2024-03-15 23:47:29 +00:00
|
|
|
@use 'sass:math';
|
|
|
|
|
|
|
|
.bottom-left {
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
2024-04-21 15:54:48 +00:00
|
|
|
bottom: space(4);
|
|
|
|
flex-direction: row;
|
2024-03-15 23:47:29 +00:00
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: flex-start;
|
|
|
|
width: 100%;
|
|
|
|
max-width: space($base-modal-max-width);
|
2024-04-21 15:54:48 +00:00
|
|
|
height: auto;
|
|
|
|
margin: 0 space(4);
|
2024-03-15 23:47:29 +00:00
|
|
|
}
|