9e6d05e055
CI / build-and-test (push) Failing after -31m24s
* Implement ContentEditorField for inline editing of content * Create ContentEditorModal for editing content in a modal * Introduce FormerShell for managing forms related to skills and thoughts * Enhance SkillsPage and ThoughtsPage with new components for better content management
34 lines
642 B
CSS
34 lines
642 B
CSS
@import 'tailwindcss';
|
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
@import '@warkypublic/svelix/css/tailwind-source.css';
|
|
@import './amcs.theme.css';
|
|
@import '@skeletonlabs/skeleton';
|
|
@import '@skeletonlabs/skeleton-svelte';
|
|
@import '@skeletonlabs/skeleton/themes/cerberus';
|
|
|
|
@source '../node_modules/@skeletonlabs/skeleton-svelte/dist/**/*.{js,svelte,ts}';
|
|
|
|
:root {
|
|
color-scheme: dark;
|
|
font-family: Inter, system-ui, sans-serif;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
@layer base {
|
|
.input::placeholder,
|
|
.textarea::placeholder,
|
|
input::placeholder,
|
|
textarea::placeholder {
|
|
opacity: 0.65;
|
|
}
|
|
}
|