feat(global): initialize project and framework structure, dockerize

This commit is contained in:
h
2025-09-02 00:03:50 +03:00
parent 3194237f5f
commit 2e9bfc888f
26 changed files with 422 additions and 113 deletions

View File

@@ -0,0 +1,11 @@
/* Base document styles */
html,
body {
height: 100%;
}
body {
color: var(--text-primary);
background-color: var(--bg-dark);
font-family: "Inter", sans-serif;
}

View File

@@ -0,0 +1,8 @@
/* Custom small utilities */
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}

View File

@@ -0,0 +1,4 @@
$color-primary: #3b82f6;
$color-muted: #6b7280;
$text-primary: #ffffff;
$text-secondary: #e2e8f0;

View File

@@ -0,0 +1,3 @@
@use 'variables';
@use 'base';
@use 'utilities';