mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-10 15:35:35 +00:00
28 lines
389 B
SCSS
28 lines
389 B
SCSS
.create-app {
|
|
width: 680px;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
|
|
& h2 {
|
|
color: #3f88c5;
|
|
}
|
|
|
|
& form {
|
|
display: flex;
|
|
gap: 5px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
& .input-field {
|
|
display: flex;
|
|
gap: 5px;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.create-app {
|
|
width: 100%;
|
|
}
|
|
}
|