1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-02 12:57:35 +01:00

style.css: increase breakpoint for small screen

This commit is contained in:
Zankaria 2024-08-17 18:17:09 +02:00 committed by Zankaria
parent 3802498962
commit 508040bae0

View File

@ -6,6 +6,11 @@ body {
margin: 0 4px;
padding-left: 4px;
padding-right: 4px;
@media (max-width: 48em) {
margin: 0px;
padding: 0px;
}
}
.hidden {
@ -229,8 +234,11 @@ div.post.op hr {
.post-details {
text-wrap: nowrap;
@media (max-width: 48em) {
float: right;
}
}
input.delete {
float: left;
@ -270,6 +278,13 @@ div.post {
padding: 0.5em 0.3em;
display: inline-block;
max-width: 94%!important;
@media (max-width: 48em) {
margin: 0.1em 0px;
padding: 0.5em 0px;
width: 100%;
max-width: unset!important;
}
}
div.post div.head {
@ -284,7 +299,7 @@ div.post > p {
font-size: 13px;
min-height: 1.16em;
@media (max-width: 32em) {
@media (max-width: 48em) {
margin-right: 1.4em;
}
}