change(navbar) changed the style of navbar

This commit is contained in:
Yusuf İpek
2021-07-27 13:27:30 +03:00
parent c2b59b9b29
commit 3399ece396
4 changed files with 18 additions and 16 deletions
+16 -4
View File
@@ -1,11 +1,23 @@
.navbar {
display: flex;
justify-content: space-between;
display: grid;
grid-template-columns: repeat(5, 1fr);
justify-items: center;
background-color: var(--color-grey);
padding: 1.6rem;
&_logo {
justify-self: flex-end;
grid-column: 1;
}
&_list {
display: flex;
justify-content: flex-end;
margin-top: 0.5rem;
grid-column: 5;
justify-self: flex-start;
margin-top: 0.3rem;
margin-left: 2rem;
font-size: 2rem;
list-style-type: none;