add clearfix for virtuoso

This commit is contained in:
plebeius.eth
2024-03-30 15:07:06 +01:00
parent a8adb2a80e
commit e51b1485af
2 changed files with 9 additions and 2 deletions
+2 -2
View File
@@ -1,14 +1,14 @@
.thumbnailBig {
float: left;
width: var(--width);
height: var(--height);
float: left;
padding: 3px 20px 5px 0;
}
.thumbnailSmall {
float: left;
width: var(--width);
height: var(--height);
float: left;
padding: 3px 10px 5px 5px;
}
+7
View File
@@ -25,6 +25,13 @@
cursor: pointer;
}
/* clearfix to the container of the floatied elements to contain them */
.postDesktop::after {
content: "";
display: table;
clear: both;
}
.postDesktop .hideThread {
background-image: var(--post-hide-button-background-image);
}