summaryrefslogtreecommitdiffstats
path: root/css/mobile.css
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-08-25 09:29:17 +0200
committerCarl Schwan <carl@carlschwan.eu>2022-08-25 12:32:19 +0200
commit71ed9aa258cc979a8de5f33489a9bc860b687c4e (patch)
tree124ca16630f763b5964fe8e3fc89b739100d027e /css/mobile.css
parentbbae9d931e87d39fc9a8f49b0e7684da23abeef9 (diff)
Apply suggestions from code review
Co-authored-by: anoy. <anoymouserver@users.noreply.github.com> Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'css/mobile.css')
-rw-r--r--css/mobile.css75
1 files changed, 41 insertions, 34 deletions
diff --git a/css/mobile.css b/css/mobile.css
index d5a8a6b89..02271a263 100644
--- a/css/mobile.css
+++ b/css/mobile.css
@@ -1,39 +1,46 @@
-@media only screen and (max-width: 1024px) {
- #app-content .utils .date {
- display: none;
- }
- #app-shortcuts th:first-child {
- padding-left: 44px;
- }
- #app-navigation:not(.hidden) + #app-content {
- width: 100%;
- }
- #mark-all-read-button {
- display: block;
- }
+@media only screen and (max-width: $breakpoint_mobile) {
+ #app-content .utils .date {
+ display: none;
+ }
+
+ #app-shortcuts th:first-child {
+ padding-left: 44px;
+ }
+
+ #app-navigation:not(.hidden) + #app-content {
+ width: 100%;
+ }
+
+ #mark-all-read-button {
+ display: block;
+ }
}
+
@media only screen and (max-width: 600px) {
- #app-content .article-actions ul {
- max-width: 164px;
- }
- #app-content .heading .date {
- display: none;
- }
- #app-content .heading h1 {
- margin-right: 0;
- }
- #app-content .utils {
- padding-right: 15px;
- }
- #app-content .article {
- padding-right: 15px;
- padding-left: 44px;
- }
+ #app-content .article-actions ul {
+ max-width: 164px;
+ }
+
+ #app-content .heading .date {
+ display: none;
+ }
+
+ #app-content .heading h1 {
+ margin-right: 0;
+ }
+
+ #app-content .utils {
+ padding-right: 15px;
+ }
+
+ #app-content .article {
+ padding-right: 15px;
+ padding-left: 44px;
+ }
}
+
@media only screen and (max-width: 340px) {
- #app-content .article-actions {
- max-width: 82px;
- }
+ #app-content .article-actions {
+ max-width: 82px;
+ }
}
-
-/*# sourceMappingURL=mobile.css.map */