Wrap application in UApp and apply base UI styles Build responsive default layout with navigation and footer Implement staff login form with validation and toast notifications Restructure index page routing
12 lines
140 B
CSS
12 lines
140 B
CSS
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
min-height: 100dvh;
|
|
background: var(--ui-bg);
|
|
}
|