Fix mobile css and links in help

compressed-week-view
Francesco Minnocci 2 years ago
parent 360fa42606
commit 0e81edfa3b
Signed by untrusted user: BachoSeven
GPG Key ID: 2BE4AB7FDAD828A4

@ -49,6 +49,11 @@ $device-s-width: 600px;
// Elements // Elements
a, a:visited {
color: var(--text-500);
font-weight: 400;
}
code { code {
font-size: 90%; font-size: 90%;
} }
@ -175,6 +180,7 @@ button,
select { select {
border: none; border: none;
background: none; background: none;
color: var(--text-500);
appearance: none; appearance: none;
font-family: inherit; font-family: inherit;
@ -366,8 +372,8 @@ body {
gap: 0.75rem; gap: 0.75rem;
@media screen and (max-width: $device-s-width) and (orientation: portrait), @media screen and (max-width: $device-s-width),
screen and (max-height: $device-s-width) and (orientation: landscape) { (pointer: coarse) {
display: none; display: none;
} }
} }
@ -677,8 +683,8 @@ body {
border-top: 1px solid var(--border-500); border-top: 1px solid var(--border-500);
@media screen and (max-width: $device-s-width) and (orientation: portrait), @media screen and (max-width: $device-s-width),
screen and (max-height: $device-s-width) and (orientation: landscape) { (pointer: coarse) {
writing-mode: vertical-lr; writing-mode: vertical-lr;
} }
@ -897,8 +903,8 @@ body {
// not on mobile // not on mobile
@media screen and (min-width: $device-s-width) and (orientation: portrait), @media screen and (min-width: $device-s-width) and
screen and (min-height: $device-s-width) and (orientation: landscape) { (pointer: fine) {
.mobile { .mobile {
display: none; display: none;
} }
@ -910,8 +916,8 @@ body {
// on mobile // on mobile
@media screen and (max-width: $device-s-width) and (orientation: portrait), @media screen and (max-width: $device-s-width),
screen and (max-height: $device-s-width) and (orientation: landscape) { (pointer: coarse) {
.toolbar { .toolbar {
padding: 0.75rem 1rem 0.75rem 0.75rem; padding: 0.75rem 1rem 0.75rem 0.75rem;
} }

Loading…
Cancel
Save