Refactor HTML and CSS styles
This commit is contained in:
parent
8228520851
commit
e2f59f804e
@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="h-full bg-layout">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="icon" href="/assets/images/pln.ico">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Executive Information System</title>
|
||||
</head>
|
||||
<body class="h-full ">
|
||||
<div id="app" class="h-full"></div>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
@ -3,6 +3,15 @@
|
||||
@tailwind utilities;
|
||||
|
||||
@layer components {
|
||||
html {
|
||||
@apply h-full bg-layout;
|
||||
}
|
||||
body {
|
||||
@apply h-full;
|
||||
}
|
||||
#app {
|
||||
@apply h-full;
|
||||
}
|
||||
/* NavBar */
|
||||
.menu-item {
|
||||
@apply w-full text-left block px-4 py-3 text-base text-gray-800;
|
||||
|
@ -16,7 +16,7 @@ export default defineConfig({
|
||||
}
|
||||
}),
|
||||
vueJsx(),
|
||||
process.env.NODE_ENV === 'production' ? utwm({}) : undefined,
|
||||
// process.env.NODE_ENV === 'production' && utwm({})
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user