CSS grid view improvements

This commit is contained in:
Cohee
2023-07-13 19:35:00 +03:00
parent 933729d914
commit 94af882530
2 changed files with 5 additions and 4 deletions

View File

@@ -2868,9 +2868,9 @@
<div class="tags rm_tag_filter"></div> <div class="tags rm_tag_filter"></div>
</div> </div>
<!-- a div containing a dynamically updated count of characters currently displayed --> <!-- a div containing a dynamically updated count of characters currently displayed -->
<div class="flex-container"> <div class="flex-container alignitemscenter">
<div id="rm_character_count"></div> <div id="rm_character_count"></div>
<i id="charListGridToggle" class="fa-solid fa-table-cells-large menu_button"></i> <i id="charListGridToggle" class="fa-solid fa-table-cells-large menu_button" title="Toggle character grid view"></i>
</div> </div>
<hr> <hr>
</div> </div>
@@ -3681,4 +3681,4 @@
</script> </script>
</body> </body>
</html> </html>

View File

@@ -1190,6 +1190,7 @@ input[type="file"] {
flex-grow: 1; flex-grow: 1;
display: flex; display: flex;
/* row-gap: 5px; */ /* row-gap: 5px; */
justify-content: space-between;
} }
#rm_ch_create_block { #rm_ch_create_block {
@@ -5267,4 +5268,4 @@ body.waifuMode .zoomed_avatar {
background-color: var(--SmartThemeBlurTintColor); background-color: var(--SmartThemeBlurTintColor);
text-align: center; text-align: center;
line-height: 14px; line-height: 14px;
} }