add navbar and new logo

This commit is contained in:
geoffrey45
2022-03-04 08:02:01 +03:00
parent 6931cd926c
commit eebe6b4440
11 changed files with 201 additions and 55 deletions
-10
View File
@@ -22,9 +22,6 @@ const props = defineProps({
</script>
<style lang="scss">
.f-container {
padding: 0 0 0 0;
}
.no_f {
display: none;
@@ -35,11 +32,4 @@ const props = defineProps({
grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
gap: $medium;
}
.f-container p {
text-transform: uppercase;
font-weight: normal;
color: rgba(255, 255, 255, 0.438);
margin-bottom: 1rem;
}
</style>
+1 -1
View File
@@ -7,7 +7,7 @@
<style lang="scss">
.r-home {
height: calc(100% - 1rem);
padding: 0 $small $small 0;
// padding: 0 $small $small 0;
}
</style>
+14
View File
@@ -0,0 +1,14 @@
<template>
<div class="topnav"></div>
</template>
<script setup>
function toggleNav() {}
</script>
<style lang="scss">
.topnav {
background-color: $gray;
display: grid;
}
</style>