From 037539dbf4c020ffa4b70213d1a254338bc5c7f1 Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Sat, 27 Feb 2021 16:41:58 +0100 Subject: [PATCH] Remove field margins * Bootstrap solves it more elegantly with line-height * body { margin: 0 } is also defined by bootstrap --- ts/editor/editor.scss | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/ts/editor/editor.scss b/ts/editor/editor.scss index 42b84cf27..14ae103a0 100644 --- a/ts/editor/editor.scss +++ b/ts/editor/editor.scss @@ -9,19 +9,6 @@ body { display: flex; flex-direction: column; margin: 5px; - - & > *, - & > * > * { - margin: 1px 0; - - &:first-child { - margin-top: 0; - } - - &:last-child { - margin-bottom: 0; - } - } } .field { @@ -38,10 +25,6 @@ body { padding: 0; } -body { - margin: 0; -} - #topbutsOuter { display: flex; flex-wrap: wrap;