2018-04-22 09:14:40 +02:00
|
|
|
.export-text-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
border: 1px solid $alto;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
&__text-container {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: $alabaster;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
resize: none;
|
|
|
|
border: none;
|
|
|
|
background: $alabaster;
|
|
|
|
font-size: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
border-top: 1px solid $alto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
padding: 10px;
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2018-05-11 01:51:26 +02:00
|
|
|
font-size: 12px;
|
2018-04-22 09:14:40 +02:00
|
|
|
cursor: pointer;
|
|
|
|
color: $curious-blue;
|
|
|
|
|
|
|
|
&--copy {
|
|
|
|
border-right: 1px solid $alto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button-text {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
}
|