2021-01-28 12:58:35 +01:00
|
|
|
@import "../css/variables.module";
|
2020-12-27 18:26:30 +02:00
|
|
|
|
|
|
|
.excalidraw {
|
|
|
|
.PasteChartDialog {
|
2021-04-08 19:54:50 +02:00
|
|
|
@include isMobile {
|
2020-12-27 18:26:30 +02:00
|
|
|
.Island {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
flex-wrap: wrap;
|
2021-04-08 19:54:50 +02:00
|
|
|
@include isMobile {
|
2020-12-27 18:26:30 +02:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.ChartPreview {
|
|
|
|
margin: 8px;
|
|
|
|
text-align: center;
|
|
|
|
width: 192px;
|
|
|
|
height: 128px;
|
|
|
|
border-radius: 2px;
|
|
|
|
padding: 1px;
|
|
|
|
border: 1px solid $oc-gray-4;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background: transparent;
|
|
|
|
div {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
svg {
|
|
|
|
max-height: 120px;
|
|
|
|
max-width: 186px;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
padding: 0;
|
|
|
|
border: 2px solid $oc-blue-5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|