diff options
author | 2024-04-29 14:42:23 +0100 | |
---|---|---|
committer | 2024-04-29 14:42:23 +0100 | |
commit | 3ff19488f1d676ff53256cb38d021186e4646c8b (patch) | |
tree | ff0724bdbae44fe01f68cdb6493aa569b3c7f368 /src/pages/index.tsx | |
parent | Actually sort services alphabetically (diff) |
Update tag styles
Diffstat (limited to 'src/pages/index.tsx')
-rw-r--r-- | src/pages/index.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx index eb65fc6..2099902 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -27,6 +27,8 @@ const LargerTag = styled(Tag)` font-size: 1.2em; transition: filter 0.2s, transform 0.2s; cursor: pointer; + background-color: rgb(195, 195, 245); + border: 2px solid black; @media (max-width: 600px) { font-size: 1em; @@ -41,6 +43,7 @@ const LargerTag = styled(Tag)` &.active { background-color: #333; color: #fff; + border: 2px solid #fff; } ` |