about summary refs log tree commit diff
path: root/bundles/vaultwarden/files/user.vaultwarden.scss.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/vaultwarden/files/user.vaultwarden.scss.hbs')
-rw-r--r--bundles/vaultwarden/files/user.vaultwarden.scss.hbs42
1 files changed, 42 insertions, 0 deletions
diff --git a/bundles/vaultwarden/files/user.vaultwarden.scss.hbs b/bundles/vaultwarden/files/user.vaultwarden.scss.hbs
new file mode 100644
index 0000000..2a27e46
--- /dev/null
+++ b/bundles/vaultwarden/files/user.vaultwarden.scss.hbs
@@ -0,0 +1,42 @@
+// vim: ft=scss
+*,
+::before,
+::after {
+  --br: 0.15rem;
+
+}
+
+body {
+
+  // block ugly font
+
+  font-family:
+    sans-serif,
+    "Apple Color Emoji",
+    "Segoe UI Emoji",
+    "Segoe UI Symbol"
+    !important;
+
+  // less rounded corners
+
+  .tw-rounded-full,
+  .tw-rounded-2xl,
+  .\!tw-rounded-r-lg,
+  .\!tw-rounded-l-lg,
+  .tw-rounded-r-lg,
+  .tw-rounded-l-lg,
+  .tw-rounded-lg,
+  .tw-rounded-md,
+  .tw-rounded {
+    border-radius: var(--br) !important;
+  }
+
+  .card {
+    border-radius: var(--br) !important;
+  }
+
+  .card-header:first-child {
+    border-radius:
+      calc(var(--br) - 1px) calc(var(--br) - 1px) 0 0 !important;
+  }
+}