Alert fixture

This commit is contained in:
Tony Air 2020-09-02 05:42:03 +07:00
parent d3d721712f
commit 3149a9a512
1 changed files with 13 additions and 2 deletions

View File

@ -178,15 +178,26 @@ textarea,
.container {
position: relative;
display: flex;
flex-direction: row;
flex-direction: column;
align-items: center;
justify-content: center;
@media (min-width: map-get($grid-breakpoints, 'sm')) {
flex-direction: row;
}
}
.typography {
flex: 1 1;
}
.btn-close {
margin-left: 1rem;
position: absolute;
top: 0;
right: 0;
@media (min-width: map-get($grid-breakpoints, 'sm')) {
position: static;
margin-left: 1rem;
}
}
}