create(layout) created persistance layout

This commit is contained in:
Yusuf İpek
2021-07-26 15:10:13 +03:00
parent 833c6c79cd
commit 20b769086a
18 changed files with 814 additions and 203 deletions
+23
View File
@@ -0,0 +1,23 @@
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 62.5%; // 1 rem = 10px; 10px/16px = 62.5% (16 is default browser font size)
}
body {
box-sizing: border-box;
padding: 3rem;
}
/*
::selection {
background-color: $color-primary;
color: $color-white;
}
*/