Adding CSS Rule for media -> Mobile View

this CSS Code is intended to target mobile view, but there was no selector for @media.
fixing my own dumb errors..... sorry for committing again, shame on me.
This commit is contained in:
rom-1 2021-01-02 17:54:45 +01:00 committed by GitHub
parent a25aa69988
commit e9297302a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,6 +52,8 @@ Mobile screen resolution:
The Top Menu within the mobile view might look a little bit cluttered, depending on the theme. The following CSS rules allow to hide unneccessary top menu buttons or input boxes.
```css
@media (max-width: 840px)
{
/* Hides "Actions" Menu in Mobile View */
#nav_menu_actions {
display: none;
@ -71,6 +73,7 @@ The Top Menu within the mobile view might look a little bit cluttered, depending
#mark-read-menu .dropdown {
display: none;
}
}
```
### Sidebar: Move the unread count to the right side of a feed