next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/intro.component.scss

41 lines
776 B
SCSS
Raw Normal View History

2019-09-26 05:38:21 +00:00
:host {
display: flex;
height: 100%;
flex: 1;
2020-01-08 01:24:35 +00:00
.empty-logo {
flex-flow: column;
transform: translateY(-100px);
2020-01-22 09:06:28 +00:00
.app-logo {
2020-01-08 01:24:35 +00:00
display: flex;
justify-content: center;
justify-items: center;
2020-01-22 09:06:28 +00:00
margin-bottom: 0.6vh;
2020-01-08 11:42:14 +00:00
img {
width: 100px;
height: 100px;
2020-01-22 09:06:28 +00:00
@media screen and (max-width: 1024px), (max-height: 800px) {
width: 10vw;
height: 10vw;
}
2020-01-08 11:42:14 +00:00
}
2020-01-08 01:24:35 +00:00
}
2019-09-26 05:38:21 +00:00
2020-01-08 01:24:35 +00:00
.app-title {
font-weight: 600;
2020-01-22 09:06:28 +00:00
font-size: 2.4em;
margin-top: 20px;
@media screen and (max-width: 1024px), (max-height: 800px) {
font-size: 1.8em;
}
2020-01-08 01:24:35 +00:00
}
2019-09-26 05:38:21 +00:00
2020-01-08 01:24:35 +00:00
.secondary-text {
margin-top: 1.4em;
font-size: 1.2em;
font-weight: 500;
color: #666666;
}
2019-09-26 05:38:21 +00:00
}
}