add project structure

This commit is contained in:
2026-07-13 16:43:40 +03:00
parent 7a574de514
commit 7ecc294e23
10 changed files with 546 additions and 0 deletions
File diff suppressed because one or more lines are too long
+14
View File
@@ -0,0 +1,14 @@
top-menu {
display: flex;
flex-direction: row;
}
top-menu_item {
text-align: center;
padding: 5px;
}
* {
box-sizing: border-box;
}
/*# sourceMappingURL=style.css.map */
+6
View File
@@ -0,0 +1,6 @@
@use './top-menu.scss';
* {
box-sizing: border-box;
}
+7
View File
@@ -0,0 +1,7 @@
top-menu {
&_logo{
width: 200px;
height: 200px;
padding: 5px;
}
}