34 lines
592 B
SCSS
34 lines
592 B
SCSS
:host {
|
|
width: 100%;
|
|
}
|
|
|
|
.container {
|
|
box-sizing: border-box;
|
|
padding: 12px 16px;
|
|
width: 100%;
|
|
background: #231f20;
|
|
box-shadow: 0px 8px 16px rgba(17, 17, 17, 0.5);
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.back-arrow {
|
|
font-size: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.plug {
|
|
height: 24px;
|
|
width: 24px;
|
|
visibility: hidden;
|
|
}
|
|
.title {
|
|
font-family: "Montserrat", sans-serif;
|
|
font-weight: 700;
|
|
font-size: 17px;
|
|
line-height: 22px;
|
|
margin: 0;
|
|
}
|
|
}
|