Skip to content

Commit 266867a

Browse files
authored
Merge pull request #10 from scyth3-c/some-changes
fix: color theme, scroll
2 parents fc00a75 + 4f9ef84 commit 266867a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
border: none;
1616
}
1717
::-webkit-scrollbar-track {
18-
background: rgb(40, 42, 54);
18+
background: #121212;
1919
}
2020
::-webkit-scrollbar-thumb {
21-
background: rgb(22, 23, 32);
21+
background: #121212;
2222
border-radius: 5px;
2323
}
2424
::-webkit-scrollbar-thumb:hover {

src/components/basecanvas.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
>
77
<b-container style="display:inline;">
88
<b-form-select
9-
class="text-center mt-1 text-white col-sm-2 font-weight-bold"
9+
class="text-center mt-1 text-secondary col-sm-2 font-weight-bold"
1010
v-model="standar"
1111
style="background: rgba(0,0,0,0);"
1212
title="el estandar con el que se compilara c++"
@@ -17,7 +17,7 @@
1717
<b-form-select-option value="c++2a">c++2a</b-form-select-option>
1818
</b-form-select>
1919
<b-form-select
20-
class="ml-3 mt-1 text-center text-white col-md-1 font-weight-bold"
20+
class="ml-3 mt-1 text-center text-secondary col-md-1 font-weight-bold"
2121
v-model="optimizar"
2222
style="background: rgba(0,0,0,0);"
2323
title="el nivel de optimizacion a la hora de compilar, esto se vera en el codigo ensamblador"

0 commit comments

Comments
 (0)