Add focus ring around Button component

This commit is contained in:
Amy 2021-09-02 01:05:53 -04:00
parent 8bb5f160f0
commit 06613ffa4d
1 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,16 @@
cursor: pointer;
}
.button:focus,
.link:focus {
box-shadow: 0 0 0 calc(4rem / 16) var(--secondary-accent);
}
.small.button:focus,
.small.link:focus {
box-shadow: 0 0 0 calc(3rem / 16) var(--secondary-accent);
}
.link {
text-decoration: none;
}