Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
border: none;
}
::-webkit-scrollbar-track {
background: rgb(40, 42, 54);
background: #121212;
}
::-webkit-scrollbar-thumb {
background: rgb(22, 23, 32);
background: #121212;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
Expand Down
4 changes: 2 additions & 2 deletions src/components/basecanvas.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
>
<b-container style="display:inline;">
<b-form-select
class="text-center mt-1 text-white col-sm-2 font-weight-bold"
class="text-center mt-1 text-secondary col-sm-2 font-weight-bold"
v-model="standar"
style="background: rgba(0,0,0,0);"
title="el estandar con el que se compilara c++"
Expand All @@ -17,7 +17,7 @@
<b-form-select-option value="c++2a">c++2a</b-form-select-option>
</b-form-select>
<b-form-select
class="ml-3 mt-1 text-center text-white col-md-1 font-weight-bold"
class="ml-3 mt-1 text-center text-secondary col-md-1 font-weight-bold"
v-model="optimizar"
style="background: rgba(0,0,0,0);"
title="el nivel de optimizacion a la hora de compilar, esto se vera en el codigo ensamblador"
Expand Down