feat: button styled
This commit is contained in:
parent
133fa0df2b
commit
70ab1e59c4
|
@ -423,7 +423,7 @@ video {
|
||||||
}
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--summary-item-color: 0deg 100% 67%
|
--summary-item-color-var: 0deg 100% 67%
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -544,6 +544,14 @@ video {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grid {
|
||||||
|
display: grid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-12 {
|
||||||
|
height: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
.h-32 {
|
.h-32 {
|
||||||
height: 8rem;
|
height: 8rem;
|
||||||
}
|
}
|
||||||
|
@ -552,6 +560,10 @@ video {
|
||||||
width: 8rem;
|
width: 8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.w-full {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.flex-1 {
|
.flex-1 {
|
||||||
flex: 1 1 0%;
|
flex: 1 1 0%;
|
||||||
}
|
}
|
||||||
|
@ -564,6 +576,10 @@ video {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.place-items-center {
|
||||||
|
place-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
.items-center {
|
.items-center {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
@ -589,6 +605,11 @@ video {
|
||||||
border-bottom-left-radius: 1.5rem;
|
border-bottom-left-radius: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bg-dark-gray-blue {
|
||||||
|
--tw-bg-opacity: 1;
|
||||||
|
background-color: hsl(224 30% 27% / var(--tw-bg-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
.bg-summary-item-color\/10 {
|
.bg-summary-item-color\/10 {
|
||||||
background-color: hsl(var(--summary-item-color-var) / 0.1);
|
background-color: hsl(var(--summary-item-color-var) / 0.1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,7 +95,12 @@
|
||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
|
<a
|
||||||
|
href="/"
|
||||||
|
class="grid place-items-center w-full h-12 text-white rounded-full bg-dark-gray-blue"
|
||||||
|
>
|
||||||
Continue
|
Continue
|
||||||
|
</a>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<footer class="fixed inset-x-0 bottom-1 attribution">
|
<footer class="fixed inset-x-0 bottom-1 attribution">
|
||||||
|
|
Loading…
Reference in New Issue