diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-01-25 22:02:59 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-01-25 22:02:59 -0800 |
commit | bb2b061d1eeb07cdc79cd631a38b454744e7d093 (patch) | |
tree | e18d21d786c3bc8de37b49b294163ce9b4cbecf0 /fatcat_scholar/static | |
parent | 8a79253a14a517b0f96d6972337b843b8578f596 (diff) | |
download | fatcat-scholar-bb2b061d1eeb07cdc79cd631a38b454744e7d093.tar.gz fatcat-scholar-bb2b061d1eeb07cdc79cd631a38b454744e7d093.zip |
css: fix syntax around mobile circle buttons (left-align)
Diffstat (limited to 'fatcat_scholar/static')
-rw-r--r-- | fatcat_scholar/static/scholar.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fatcat_scholar/static/scholar.css b/fatcat_scholar/static/scholar.css index 3258dc6..6d116b7 100644 --- a/fatcat_scholar/static/scholar.css +++ b/fatcat_scholar/static/scholar.css @@ -73,11 +73,11 @@ nav.ui.menu { .ui.items > .item > .content { padding-left: 0; padding-inline-start: 1.5em; -}; +} @media only screen and (max-width: 767px) { .action-bar { - justify-content: left; + justify-content: flex-start; } .mobile-hide { display: none !important; @@ -85,7 +85,7 @@ nav.ui.menu { .ui.items>.item>.image:not(.ui) { width: auto; max-height: 300px!important; - }; + } } @media only screen and (min-width: 768px) { .mobile-only { display: none !important; } |