aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/less/helpers.less
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/less/helpers.less')
-rw-r--r--web_src/less/helpers.less7
1 files changed, 6 insertions, 1 deletions
diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less
index 1322ba4169..7721e97d7d 100644
--- a/web_src/less/helpers.less
+++ b/web_src/less/helpers.less
@@ -6,7 +6,6 @@
.sb { justify-content: space-between !important; }
.fc { flex-direction: column !important; }
.f1 { flex: 1 !important; }
-.rounded { border-radius: var(--border-radius) !important; }
.mono {
font-family: var(--fonts-monospace) !important;
@@ -18,6 +17,12 @@
word-break: break-all !important;
}
+.rounded { border-radius: var(--border-radius) !important; }
+.rounded-top { border-radius: var(--border-radius) var(--border-radius) 0 0 !important; }
+.rounded-bottom { border-radius: 0 0 var(--border-radius) var(--border-radius) !important; }
+.rounded-left { border-radius: var(--border-radius) 0 0 var(--border-radius) !important; }
+.rounded-right { border-radius: 0 var(--border-radius) var(--border-radius) 0 !important; }
+
.m-0 { margin: 0 !important; }
.m-1 { margin: .125rem !important; }
.m-2 { margin: .25rem !important; }