mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 07:03:25 +00:00
29 lines
565 B
SCSS
29 lines
565 B
SCSS
@import "keyframes.scss";
|
|
|
|
.App {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
animation: fadein 250ms both;
|
|
|
|
& h1 {
|
|
display: inline-block;
|
|
border-right: 1px solid rgba(0, 0, 0, 0.3);
|
|
margin: 0;
|
|
margin-right: 20px;
|
|
padding: 10px 23px 10px 0;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
vertical-align: top;
|
|
}
|
|
|
|
& h2 {
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
line-height: inherit;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|