systems-obscure/src/styles/shadcn-overrides.css
thomasabishop 50751e0c20
All checks were successful
Deploy Blog / deploy (push) Successful in 1m38s
style: change theme and header
2025-10-20 17:23:59 +01:00

51 lines
696 B
CSS

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