Skip to content

Commit 698d395

Browse files
committed
styles adjustment light mode
- wallet connection icon - input borders
1 parent 2d69aee commit 698d395

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

src/common/components/layouts/Top.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@click="copyFullAccountAddress"
1313
/>
1414
<span>{{ truncatedAccount }}</span>
15-
<v-btn variant="flat" size="x-small" color="purple" rounded="full" :icon="mdiLinkOff"
15+
<v-btn variant="flat" size="x-small" color="theme-primary" rounded="full" :icon="mdiLinkOff"
1616
@click="disconnectWallet" />
1717
</div>
1818
<label for="theme" class="theme-switch">

src/common/plugins/vuetify.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export const vuetify = createVuetify({
5454
...ROOTSTOCK_COLORS,
5555
background: '#000',
5656
surface: '#252525',
57+
'theme-primary': '#9E76FF',
5758
},
5859
variables: {
5960
'theme-on-purple': '#000',
@@ -65,6 +66,8 @@ export const vuetify = createVuetify({
6566
colors: {
6667
...ROOTSTOCK_COLORS,
6768
background: '#FAF9F5',
69+
surface: '#FAF9F5',
70+
'theme-primary': '#FF9100',
6871
},
6972
variables: {
7073
'theme-on-purple': '#000',

src/common/styles/inputs.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,12 @@ input[type=number].v-field__input, .v-select__selection {
2626
font-size: 1.5rem;
2727
font-weight: 700;
2828
line-height: 1;
29+
}
30+
31+
.v-field--focused {
32+
border: 1px solid rgba(var(--v-border-color));
33+
}
34+
35+
.v-select--active-menu {
36+
border: 1px solid rgba(var(--v-border-color));
2937
}

0 commit comments

Comments
 (0)