You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
818 B
SCSS
51 lines
818 B
SCSS
1 month ago
|
:host {
|
||
|
.fixed-bar {
|
||
|
background: #fff;
|
||
|
padding: 12px 16px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
|
||
|
z-index: 100;
|
||
|
}
|
||
|
|
||
|
.company-logo {
|
||
|
width: 120px;
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
.right-content {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: 12px;
|
||
|
}
|
||
|
|
||
|
.text-wrapper {
|
||
|
.slogan {
|
||
|
margin: 0;
|
||
|
line-height: 1.5;
|
||
|
font-size: 10px;
|
||
|
color: #2F3033;
|
||
|
text-align: right;
|
||
|
font-weight: 400;
|
||
|
margin-bottom: 4px;
|
||
|
}
|
||
|
|
||
|
.hint {
|
||
|
margin: 0;
|
||
|
line-height: 1.5;
|
||
|
font-size: 9px;
|
||
|
color: #2F3033;
|
||
|
opacity: 0.5;
|
||
|
text-align: right;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.qr-code {
|
||
|
width: 70px;
|
||
|
height: 70px;
|
||
|
object-fit: contain;
|
||
|
}
|
||
|
}
|