systems-obscure/src/styles/shadcn-overrides.css

52 lines
696 B
CSS
Raw Normal View History

2025-07-07 17:08:27 +01:00
* {
2025-10-20 17:23:59 +01:00
/* border-color: var(--border);*/
outline-color: color-mix(in srgb, var(--ring) 50%, transparent);
2025-07-07 17:08:27 +01:00
}
html {
2025-10-20 17:23:59 +01:00
font-family: var(--font-sansserif);
2025-07-07 17:08:27 +01:00
}
body {
2025-10-20 17:23:59 +01:00
background-color: var(--background);
color: var(--foreground);
2025-07-07 17:08:27 +01:00
}
button,
[type="button"],
[type="reset"],
[type="submit"],
.btn,
a[href]:not([aria-disabled="true"]),
[role="button"] {
2025-10-20 17:23:59 +01:00
cursor: pointer;
2025-07-07 17:08:27 +01:00
}
.shadow,
.shadow-sm,
.shadow-md,
.shadow-lg,
.shadow-xl,
.shadow-2xl,
[class*="shadow"] {
2025-10-20 17:23:59 +01:00
box-shadow: none !important;
2025-07-07 17:08:27 +01:00
}
.card,
.dialog,
.popover,
.dropdown-menu {
2025-10-20 17:23:59 +01:00
box-shadow: none !important;
2025-07-07 17:08:27 +01:00
}
2025-10-20 17:23:59 +01:00
figure > img {
max-width: 600px;
min-width: 300px;
2025-07-07 17:08:27 +01:00
}
2025-08-05 17:39:21 +01:00
img.rounded-image {
2025-10-20 17:23:59 +01:00
max-width: auto;
min-width: auto;
}