You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
527 B
CSS
36 lines
527 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html {
|
|
@apply bg-primary text-white;
|
|
}
|
|
|
|
#__nuxt {
|
|
@apply h-screen w-screen;
|
|
}
|
|
|
|
.app {
|
|
@apply flex w-full flex-col items-center px-12;
|
|
}
|
|
.content {
|
|
@apply mx-12 flex h-full w-full max-w-3xl flex-row justify-center gap-5;
|
|
}
|
|
|
|
|
|
.sidebar {
|
|
@apply sticky top-3 h-fit w-64 rounded-lg px-10 py-5 text-white;
|
|
}
|
|
|
|
.main {
|
|
@apply h-screen w-2/5;
|
|
}
|
|
|
|
.card {
|
|
@apply bg-secondary;
|
|
}
|
|
|
|
textarea {
|
|
@apply bg-secondary outline-none border-none focus:outline-none resize-none;
|
|
}
|