35 lines
566 B
SCSS
35 lines
566 B
SCSS
:host {
|
|
display: flex;
|
|
height: 100%;
|
|
flex: 1;
|
|
|
|
.empty-logo {
|
|
flex-flow: column;
|
|
transform: translateY(-100px);
|
|
.big-circle {
|
|
border-radius: 50%;
|
|
width: 200px;
|
|
height: 200px;
|
|
display: flex;
|
|
justify-content: center;
|
|
justify-items: center;
|
|
img {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
}
|
|
|
|
.app-title {
|
|
font-weight: 600;
|
|
font-size: 2.6em;
|
|
}
|
|
|
|
.secondary-text {
|
|
margin-top: 1.4em;
|
|
font-size: 1.2em;
|
|
font-weight: 500;
|
|
color: #666666;
|
|
}
|
|
}
|
|
}
|