24 lines
316 B
SCSS
24 lines
316 B
SCSS
:host {
|
|
display: flex;
|
|
height: 100%;
|
|
flex: 1;
|
|
|
|
.big-circle {
|
|
border-radius: 50%;
|
|
width: 240px;
|
|
height: 240px;
|
|
line-height: 240px;
|
|
text-align: center;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.app-title {
|
|
font-weight: 600;
|
|
font-size: 32px;
|
|
}
|
|
|
|
.secondary-text {
|
|
font-size: 16px;
|
|
}
|
|
}
|