Skip to content

Commit d08c871

Browse files
committed
styled buttons in buttons container
1 parent bc71bea commit d08c871

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

src/app/styles/components/_buttons.scss

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -177,16 +177,6 @@
177177
cursor: pointer;
178178
}
179179

180-
.import-button:hover,
181-
.howToUse-button:hover,
182-
.export-button:hover,
183-
.pause-button:hover,
184-
.reconnect-button:hover {
185-
color: $function-bar-text-hover;
186-
box-shadow: 1px 1px 2px 1px rgba(30, 86, 171, 0.25);
187-
transform: translate3d(0, -3px, 0);
188-
}
189-
190180
.svg-inline--fa {
191181
//color: $blue-brand;
192182
margin-right: 0.75em;

src/app/styles/layout/_buttonsContainer.scss

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
background: white;
99
border-top: 1px solid #e5e7eb;
1010
padding: 12px;
11+
gap: 8px;
1112
}
1213

1314
.introjs-tooltip {
@@ -101,3 +102,19 @@
101102
align-items: center;
102103
height: 20%;
103104
}
105+
106+
.buttons-container button {
107+
display: flex;
108+
align-items: center;
109+
color: #6b7280;
110+
font-size: 1rem;
111+
font-weight: 500;
112+
background: transparent;
113+
border: none;
114+
border-radius: 0.375rem;
115+
transition: all 200ms ease;
116+
}
117+
118+
.buttons-container button:hover {
119+
background-color: #f3f4f6;
120+
}

src/app/styles/layout/_mainContainer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.main-container {
22
height: 100%;
33
margin: 0 auto;
4-
background-color: $function-bar-background;
4+
background-color: white;
55
overflow: hidden;
66
}
77

src/app/styles/layout/_travelContainer.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,3 @@
4545
color: transparent;
4646
}
4747
}
48-
49-
.button-icon {
50-
color: $icon-primary;
51-
}

0 commit comments

Comments
 (0)