28 lines
365 B
SCSS
28 lines
365 B
SCSS
.footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 0.5rem 0;
|
|
|
|
app-squared-btn {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
app-form-field {
|
|
flex: 0 0 calc(33.33% - 1rem);
|
|
}
|
|
|
|
.fields {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.footer {
|
|
app-squared-btn {
|
|
width: auto;
|
|
}
|
|
}
|
|
}
|