Skip to content

Commit 58a77c6

Browse files
committed
Merge branch 'main' into 300-sortable-searchable-schemes
2 parents 519ab41 + 1598b21 commit 58a77c6

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

src/components/header.jsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ const Header = ({ siteTitle }) => {
6666
padding: 0;
6767
list-style: none;
6868
display: inline-block;
69-
width: 80px;
7069
text-align: right;
7170
7271
li {
73-
margin: 0 0 0 5px;
7472
display: inline;
7573
7674
button {
7775
background: none;
76+
width: 2rem;
77+
height: 2rem;
7878
display: inline-block;
79-
padding: 5px;
79+
margin: 2px;
8080
color: ${config.colors.skoHubMiddleGrey};
8181
border: 1px solid ${config.colors.skoHubMiddleGrey};
8282
border-radius: 30px;
@@ -91,7 +91,6 @@ const Header = ({ siteTitle }) => {
9191
color: black;
9292
font-weight: bold;
9393
display: inline-block;
94-
padding: 5px;
9594
border: 1px solid ${config.colors.skoHubLightColor};
9695
border-radius: 30px;
9796
}

src/components/layout.jsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,28 @@ const Layout = ({ children }) => {
151151
}
152152
}
153153
154+
table {
155+
border-collapse: collapse;
156+
margin-bottom: 1rem;
157+
color: #212529;
158+
width: 100%;
159+
}
160+
161+
table :is(td, th) {
162+
padding: 0.75rem;
163+
vertical-align: top;
164+
border-top: 1px solid #dee2e6ff;
165+
}
166+
167+
table :is(thead) :is(th) {
168+
vertical-align: bottom;
169+
border-bottom: 2px solid #dee2e6ff;
170+
background-color: #f8f9faff;
171+
}
172+
table :is(tbody) {
173+
border-top: 2px solid #dee2e6ff;
174+
}
175+
154176
.inputStyle {
155177
background-color: ${config.colors.skoHubWhite};
156178
cursor: pointer;

0 commit comments

Comments
 (0)