Skip to content

Commit fabaf28

Browse files
committed
Make border width slightly thinner
1 parent e3cb09f commit fabaf28

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

components/Collections/style.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
}
77

88
.Collections__Collection {
9-
border: 2px solid var(--c-gray-7);
9+
border: 1px solid var(--c-gray-7);
1010
border-radius: 3px;
1111
display: block;
1212
font-size: var(--fs-s);
@@ -16,7 +16,10 @@
1616
color: var(--c-gray-11);
1717
text-decoration: none;
1818

19-
transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
19+
transition:
20+
color 150ms ease-in-out,
21+
background-color 150ms ease-in-out,
22+
border-color 150ms ease-in-out;
2023
}
2124

2225
.Collections__Collection:hover {

layouts/Application/components/Footer/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
.AppFooter__Links__Link {
6868
align-items: center;
69-
border: 2px solid var(--c-yellow-7);
69+
border: 1px solid var(--c-yellow-7);
7070
display: flex;
7171
font-size: var(--fs-s);
7272
justify-content: center;
@@ -88,7 +88,7 @@
8888

8989
.AppFooter__DarkModeToggle {
9090
align-items: center;
91-
border: 2px solid var(--c-gray-7);
91+
border: 1px solid var(--c-gray-7);
9292
display: flex;
9393
font-size: var(--fs-s);
9494
gap: 0.5em;

0 commit comments

Comments
 (0)