feat(15): styling step 5

This commit is contained in:
efim
2023-07-16 04:55:10 +00:00
parent 5d0f58edc1
commit 27e19d4494
3 changed files with 30 additions and 4 deletions

View File

@@ -1030,6 +1030,16 @@ video {
padding-right: 0.75rem;
}
.py-32 {
padding-top: 8rem;
padding-bottom: 8rem;
}
.px-8 {
padding-left: 2rem;
padding-right: 2rem;
}
.pl-6 {
padding-left: 1.5rem;
}
@@ -1466,6 +1476,14 @@ html {
margin-top: 1.25rem;
}
.md\:mt-4 {
margin-top: 1rem;
}
.md\:mt-2 {
margin-top: 0.5rem;
}
.md\:flex {
display: flex;
}
@@ -1534,6 +1552,10 @@ html {
width: 100%;
}
.md\:w-20 {
width: 5rem;
}
.md\:grow {
flex-grow: 1;
}
@@ -1574,6 +1596,10 @@ html {
align-items: flex-end;
}
.md\:justify-center {
justify-content: center;
}
.md\:justify-between {
justify-content: space-between;
}