24 lines
325 B
SCSS
24 lines
325 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.bookmarks-contianer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
> * {
|
|
margin-bottom: 2rem;
|
|
}
|
|
}
|
|
|
|
.spinner {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|