Feat/tailwind (#1179)

This commit is contained in:
Liyas Thomas
2020-09-22 22:36:37 +05:30
committed by GitHub
parent 45fb612793
commit b747d0273c
59 changed files with 2020 additions and 1431 deletions

View File

@@ -13,29 +13,27 @@
</template>
<style scoped lang="scss">
div.realtime-log {
margin: 4px;
padding: 8px 16px;
width: calc(100% - 8px);
border-radius: 8px;
background-color: var(--bg-dark-color);
color: var(--fg-color);
.realtime-log {
@apply m-2;
@apply p-2;
@apply rounded-lg;
@apply bg-bgDarkColor;
@apply text-fgColor;
@apply overflow-auto;
height: 256px;
overflow: auto;
&,
span {
font-size: 16px;
font-family: "Roboto Mono", monospace;
font-weight: 400;
user-select: text;
@apply text-sm;
@apply font-mono;
@apply font-normal;
@apply select-text;
}
span {
display: block;
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-all;
@apply block;
@apply break-words;
@apply break-all;
}
}
</style>