Remove redundant margins

This commit is contained in:
2024-08-29 15:44:17 +02:00
parent c877d0bf2d
commit fa4084c24b
7 changed files with 6 additions and 11 deletions

View File

@@ -80,7 +80,6 @@ let click_int = e => {
} }
.flat { .flat {
background: none; background: none;
margin: 0;
color: var(--body_text_color); color: var(--body_text_color);
box-shadow: none; box-shadow: none;
} }

View File

@@ -121,7 +121,6 @@ onMount(() => {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
width: 100%; width: 100%;
margin-top: 4px;
} }
.toolbar > * { .toolbar > * {
flex: 0 0 auto; flex: 0 0 auto;

View File

@@ -37,8 +37,7 @@ onMount(() => {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
margin-top: 8px; gap: 6px;
gap: 8px;
} }
.node { .node {
display: flex; display: flex;

View File

@@ -158,7 +158,6 @@ onMount(() => {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
width: 100%; width: 100%;
margin-top: 4px;
} }
.toolbar > * { flex: 0 0 auto; } .toolbar > * { flex: 0 0 auto; }
.toolbar_spacer { .toolbar_spacer {

View File

@@ -28,7 +28,6 @@ let upload_widget
flex-direction: row; flex-direction: row;
justify-content: space-around; justify-content: space-around;
gap: 8px; gap: 8px;
margin-top: 8px;
} }
.upload_buttons > * { .upload_buttons > * {
flex: 1 1 auto; flex: 1 1 auto;

View File

@@ -188,12 +188,13 @@ onMount(() => {
max-width: 100%; max-width: 100%;
background: var(--body_background); background: var(--body_background);
border-radius: 8px; border-radius: 8px;
padding: 8px; padding: 2px;
text-align: initial; text-align: initial;
} }
.card_component { .card_component {
flex: 1 1 auto; flex: 1 1 auto;
overflow: auto; overflow: auto;
padding: 6px;
} }
.size_1 { width: 400px; } .size_1 { width: 400px; }
.size_1 > .card_component { max-height: 400px; } .size_1 > .card_component { max-height: 400px; }
@@ -214,5 +215,6 @@ onMount(() => {
margin: 0; margin: 0;
font-size: 1.5em; font-size: 1.5em;
border-bottom: none; border-bottom: none;
text-align: center;
} }
</style> </style>

View File

@@ -564,13 +564,11 @@ footer, .footer_content,
inset -2px -2px grey, inset -2px -2px grey,
inset 2px 2px #fff !important; inset 2px 2px #fff !important;
} }
.flat {
margin: 2px !important;
}
.window, .page_content, .file_button, .expandable, pre { .window, .page_content, .file_button, .expandable, pre {
padding: 3px !important; padding: 3px !important;
} }
.window > .header, .headerbar { .window > .header,
.headerbar {
background: linear-gradient(90deg,navy,#1084d0) !important; background: linear-gradient(90deg,navy,#1084d0) !important;
color: #fff !important; color: #fff !important;
} }