Skip to content

Commit fd481c5

Browse files
committed
fixes #7
1 parent a284cf0 commit fd481c5

File tree

10 files changed

+13
-2
lines changed

10 files changed

+13
-2
lines changed

src/components/Button/Button.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828

2929
&:hover {
30-
background: #f6f6f6;
30+
background: #F6F6F6;
3131
background: var(--button-hover-color);
3232

3333
@media (hover: none) {
@@ -40,10 +40,11 @@
4040
}
4141

4242
&.active {
43-
background: #f0f0f0;
43+
background: #F0F0F0;
4444
background: var(--button-active-color);
4545

4646
.Icon {
47+
color: #757575;
4748
color: var(--icon-active-color);
4849
}
4950
}

src/components/Header/Header.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
height: $top-bar-height;
1010
background: $white;
1111
background: var(--primary-color);
12+
border-bottom: 1px solid $gray12;
1213
border-bottom: 1px solid var(--border-color);
1314
transition: all .3s ease;
1415

src/components/HeaderItems/HeaderItems.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
width: 1px;
2020
height: 50%;
2121
margin: 0 10px;
22+
background: $gray12;
2223
background: var(--border-color);
2324
}
2425
}

src/components/LeftPanelTabs/LeftPanelTabs.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
display: flex;
66
height: 30px;
77
border-radius: 4px;
8+
border: 1px solid $gray12;
89
border: 1px solid var(--border-color);
910
overflow: hidden;
1011

@@ -21,6 +22,7 @@
2122
}
2223

2324
&:nth-child(n+2) {
25+
border-left: 1px solid $gray12;
2426
border-left: 1px solid var(--border-color);
2527
}
2628

src/components/Note/Note.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
width: 100%;
66
margin-top: -1px;
77
padding: 10px;
8+
border: 1px solid $gray12;
89
border: 1px solid var(--border-color);
910
font-size: 13px;
1011
background: white;

src/components/PrintModal/PrintModal.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
width: 100%;
6767
margin: 10px 0 0;
6868
padding: 10px 0 0;
69+
border-top: 1px solid $gray12;
6970
border-top: 1px solid var(--border-color);
7071
box-sizing: border-box;
7172

src/components/SearchOverlay/SearchOverlay.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
align-items: center;
105105
width: 30px;
106106
height: 30px;
107+
border: 1px solid $gray12;
107108
border: 1px solid var(--border-color);
108109
border-left: 0;
109110
background: $gray4;

src/components/SearchResult/SearchResult.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
cursor: pointer;
99
background: white;
1010
background: var(--primary-color);
11+
border: 1px solid $gray12;
1112
border: 1px solid var(--border-color);
1213

1314
&.selected {

src/components/Thumbnail/Thumbnail.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343

4444
&.active {
4545
.page-image {
46+
border: 1px solid $gray12;
4647
border: 1px solid var(--border-color);
4748
}
4849
}

src/constants/overlay.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
background: $white;
1111
background: var(--primary-color);
1212
padding: 5px;
13+
border: 1px solid $gray12;
1314
border: 1px solid var(--border-color);
1415
border-radius: 10px;
1516
}

0 commit comments

Comments
 (0)