bigger tabs, bold when active

This commit is contained in:
Alejandro Gomez 2023-01-11 13:26:36 +01:00
parent ac19f732dc
commit a12d93f7e1
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817
3 changed files with 6 additions and 2 deletions

View File

@ -267,6 +267,10 @@ body.scroll-lock {
margin: 0; margin: 0;
} }
.tabs .active {
font-weight: bold;
}
.error { .error {
color: var(--error); color: var(--error);
} }

View File

@ -95,7 +95,7 @@
.tab { .tab {
margin: 0; margin: 0;
padding: 4px; padding: 8px 0;
border-bottom: 3px solid var(--gray-secondary); border-bottom: 3px solid var(--gray-secondary);
} }
.tab.active { .tab.active {

View File

@ -1,4 +1,4 @@
.root-tabs > div { .root-tabs > div {
padding: 5px 0; padding: 8px 0;
margin-right: 0; margin-right: 0;
} }