Simplify layout and remove unused styles

Removed styles for `.sidebar` and `.top-row` elements, including their background, layout, and responsive behavior, as they are no longer used. Simplified `main` and `article` elements by standardizing `margin` and `padding` to `0`.

Removed media query styles for `.top-row` and `.sidebar` to streamline responsive design. Updated global styles in `app.css` to ensure consistent spacing and alignment for `html`, `body`, `main`, and `.page`.

Focused on creating a cleaner, more minimal design by removing redundant styles and ensuring uniformity across the layout.
This commit is contained in:
2026-06-01 04:59:46 +02:00
parent 6a03308dc1
commit cc68f76180
2 changed files with 15 additions and 71 deletions

View File

@@ -3,6 +3,8 @@
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
padding: 0;
margin: 0;
width: 100%;
}
html, body {
@@ -10,13 +12,19 @@ html, body {
overflow: hidden;
}
main, .page {
margin: 0;
padding: 0;
width: 100%;
}
article {
height: calc(100vh - 36px);
display: flex;
flex-direction: column;
overflow-y: auto;
padding-left: 0 !important;
padding-right: 0 !important;
padding: 0 !important;
margin: 0 !important;
}
.receiver-page-layout {