25 lines
352 B
SCSS
25 lines
352 B
SCSS
:host {
|
|
// position: absolute;
|
|
// bottom: 0px;
|
|
width: 100%;
|
|
}
|
|
div {
|
|
font-size: small;
|
|
}
|
|
@media (max-width: 1023px) {
|
|
.order-2 {
|
|
order: 2;
|
|
}
|
|
.order-3 {
|
|
order: 3;
|
|
}
|
|
}
|
|
section p {
|
|
display: block;
|
|
margin-block-start: 1em;
|
|
margin-block-end: 1em;
|
|
margin-inline-start: 0px;
|
|
margin-inline-end: 0px;
|
|
unicode-bidi: isolate;
|
|
}
|