flasky flasky

This commit is contained in:
Michał Gdula 2022-12-28 00:46:08 +00:00
parent e6e2714a95
commit 40baf07fe1
36 changed files with 1035 additions and 1365 deletions

37
static/css/_wrapper.scss Normal file
View file

@ -0,0 +1,37 @@
.wrapper {
margin: 0;
padding: 0;
background-color: $white;
color: $black;
border-radius: 6px 0 0 0;
overflow: hidden;
}
.content {
margin: 0;
padding: 0.5rem;
height: 100vh;
display: flex;
flex-direction: column;
gap: 1.5rem;
position: relative;
p, .btn {
margin: 0;
padding: 0;
font-size: 1rem;
}
}
@media screen and (max-width: 768px) {
.wrapper {
border-radius: 0;
}
}