feat: add dedicated class to hide contents on small-width screens
This commit is contained in:
parent
91224e634a
commit
98e062611e
4 changed files with 17 additions and 15 deletions
|
@ -31,6 +31,13 @@ body {
|
|||
padding-bottom: 4rem;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
.hsmol_hide {
|
||||
display: none !important;
|
||||
visibility: hidden !important;
|
||||
}
|
||||
}
|
||||
|
||||
:link {
|
||||
color: var(--highlight_1);
|
||||
font-style: italic;
|
||||
|
@ -158,6 +165,11 @@ a:hover {
|
|||
display: flex;
|
||||
flex-direction: row;
|
||||
list-style-type: none;
|
||||
|
||||
overflow-x: scroll;
|
||||
overflow-y: hidden;
|
||||
|
||||
white-space: nowrap;
|
||||
}
|
||||
#post_file_path a {
|
||||
color: var(--text_1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue