Refactor project structure and dependencies; rename package to azaion-ui, update version to 0.0.1, and remove unused files. Introduce new routing and authentication features in App component.

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-25 03:10:15 +02:00
parent e407308284
commit 157a33096a
112 changed files with 6530 additions and 17843 deletions
+25 -11
View File
@@ -1,17 +1,31 @@
@import "tailwindcss";
@theme {
--color-az-bg: #1e1e1e;
--color-az-panel: #2b2b2b;
--color-az-header: #343a40;
--color-az-border: #495057;
--color-az-muted: #6c757d;
--color-az-text: #adb5bd;
--color-az-orange: #fd7e14;
--color-az-blue: #228be6;
--color-az-red: #fa5252;
--color-az-green: #40c057;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* {
box-sizing: border-box;
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
::-webkit-scrollbar-track {
background: var(--color-az-bg);
}
::-webkit-scrollbar-thumb {
background: var(--color-az-border);
border-radius: 3px;
}