diff options
| author | Umar Getagazov <umar@handlerug.me> | 2023-05-17 12:40:26 +0300 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2023-05-17 12:01:37 +0200 |
| commit | 366706b4df336c904d348bacc97ae9b649b49169 (patch) | |
| tree | 5797c2727a90f50b113e6ee0f399d39afcad3aa6 | |
| parent | d03fa6b9f022d7bfa3110f164646fa5d1e420bee (diff) | |
| download | writefreesoftware.org-366706b4df336c904d348bacc97ae9b649b49169.tar.xz | |
Fix brand link width and focus ring size
This overrides a fixed length of 10rem in _nav.scss of the theme
| -rw-r--r-- | assets/sass/_custom.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/assets/sass/_custom.scss b/assets/sass/_custom.scss index 2e4dfa0..e6b8ae0 100644 --- a/assets/sass/_custom.scss +++ b/assets/sass/_custom.scss @@ -23,6 +23,12 @@ } } +@media screen and (min-width: 992px) { + .nav { + grid-template-columns: min-content 1fr; + } +} + a { text-decoration: underline; |
