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

@@ -12,7 +12,7 @@
</ul>
<ul>
<li>
<div class="flex-wrap">
<div class="row-wrapper">
<label for="collectionUpload">
<button
class="icon"
@@ -288,39 +288,43 @@
.doc-desc,
.folder,
.request {
display: flex;
flex-flow: column;
justify-content: center;
flex: 1;
padding: 16px;
@apply flex;
@apply flex-col;
@apply justify-center;
@apply flex-1;
@apply p-8;
.material-icons {
margin-right: 16px;
@apply mr-8;
}
}
.folder {
border-left: 1px solid var(--brd-color);
margin: 16px 0 0;
@apply border-l;
@apply border-brdColor;
@apply mt-8;
}
.request {
border: 1px solid var(--brd-color);
border-radius: 8px;
margin: 16px 0 0;
@apply border;
@apply border-brdColor;
@apply rounded-lg;
@apply mt-8;
h4 {
margin: 8px 0;
@apply mt-8;
}
}
.doc-desc {
color: var(--fg-light-color);
border-bottom: 1px dashed var(--brd-color);
margin: 0;
@apply text-fgLightColor;
@apply border-b;
@apply border-dashed;
@apply border-brdColor;
@apply m-0;
&:last-child {
border-bottom: none;
@apply border-b-0;
}
}
</style>