mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 10:47:27 +03:00
36 lines
608 B
SCSS
36 lines
608 B
SCSS
@import '../utils/base';
|
|
@import '../utils/mixins/vertical-align';
|
|
|
|
.home {
|
|
text-align: center;
|
|
height: calc(100vh - #{$headerHeight});
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-flow: column;
|
|
}
|
|
|
|
.home__title {
|
|
font-size: 1.75rem;
|
|
|
|
@media (min-width: $mdMin) {
|
|
font-size: 2.2rem;
|
|
}
|
|
}
|
|
|
|
.home__servers-list {
|
|
margin-top: 1rem;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.home__servers-item.home__servers-item {
|
|
text-align: left;
|
|
position: relative;
|
|
padding: .75rem 2.5rem 0.75rem 1rem;
|
|
}
|
|
|
|
.home__servers-item-icon {
|
|
@include vertical-align();
|
|
right: 1rem;
|
|
}
|