Hide window title when screen is small
This commit is contained in:
@@ -121,18 +121,20 @@ const keydown = (e) => {
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
}
|
||||
@media(max-width: 800px) {
|
||||
.title {
|
||||
/* display: none; */
|
||||
content: "";
|
||||
}
|
||||
}
|
||||
.search {
|
||||
min-width: 100px;
|
||||
max-width: 300px;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
}
|
||||
@media(max-width: 700px) {
|
||||
.title {
|
||||
display: none;
|
||||
}
|
||||
.search {
|
||||
max-width: none;
|
||||
}
|
||||
}
|
||||
.button {
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
|
Reference in New Issue
Block a user