Add scrollbar overflow to scss

This commit is contained in:
RealStickman 2022-11-19 19:02:53 +01:00
parent a2ac378047
commit c4a0fb57db
5 changed files with 16 additions and 4 deletions

View File

@ -959,4 +959,8 @@ body {
thead { thead {
color: #111111; } color: #111111; }
/*************** SCROLLBAR BASE CSS ***************/
.highlightable {
overflow: auto; }
/*# sourceMappingURL=theme.css.map */ /*# sourceMappingURL=theme.css.map */

File diff suppressed because one or more lines are too long

View File

@ -156,9 +156,9 @@ blockquote {
}*/ }*/
/* random stuff */ /* random stuff */
.highlightable { /*.highlightable {
overflow: auto; overflow: auto;
} }*/
/* table headings */ /* table headings */
/*thead { /*thead {

View File

@ -26,3 +26,6 @@
// Tables // Tables
@import "theme/tables"; @import "theme/tables";
// Scrollbar
@import "theme/scrollbar";

View File

@ -0,0 +1,5 @@
/*************** SCROLLBAR BASE CSS ***************/
.highlightable {
overflow: auto;
}