24 lines
391 B
SCSS
24 lines
391 B
SCSS
|
.share-modal {
|
||
|
padding: #{20 / $base-font-size}rem;
|
||
|
width: #{500 / $base-font-size}rem;
|
||
|
}
|
||
|
|
||
|
.share-modal__header {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.share-modal__section {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding: #{10 / $base-font-size}rem 0;
|
||
|
}
|
||
|
|
||
|
.share-modal__label {
|
||
|
width: #{86 / $base-font-size}rem;
|
||
|
}
|
||
|
|
||
|
.share-modal__input {
|
||
|
flex: 1;
|
||
|
}
|