Add tailwind to app-frontend (#2234)

This commit is contained in:
Mars
2024-08-22 00:21:45 -04:00
committed by GitHub
parent f73ed1213f
commit 4d0407a3b3
9 changed files with 228 additions and 418 deletions

View File

@@ -231,7 +231,7 @@ async function handleCommand(e) {
<template>
<SplashScreen v-if="!stateFailed" ref="splashScreen" data-tauri-drag-region />
<div v-if="stateInitialized" class="container">
<div v-if="stateInitialized" class="app-container">
<div class="nav-container">
<div class="nav-section">
<suspense>
@@ -379,7 +379,7 @@ async function handleCommand(e) {
}
}
.container {
.app-container {
--appbar-height: 3.25rem;
--sidebar-width: 4.5rem;

View File

@@ -1,3 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: var(--font-standard);
color-scheme: dark;