refactor: clean up boilerplate

This commit is contained in:
liyasthomas
2021-11-30 18:52:28 +05:30
parent c3fcc6e35d
commit 190a4c43ef
8 changed files with 216 additions and 371 deletions

View File

@@ -1,5 +1,3 @@
@import './markdown.css';
html,
body,
#app {
@@ -29,15 +27,15 @@ html.dark {
}
.btn {
@apply px-4 py-1 rounded inline-block
bg-teal-600 text-white cursor-pointer
@apply rounded cursor-pointer bg-teal-600 text-white
py-1 px-4 inline-block
hover:bg-teal-700
disabled:cursor-default disabled:bg-gray-600 disabled:opacity-50;
}
.icon-btn {
@apply inline-block cursor-pointer select-none
opacity-75 transition duration-200 ease-in-out
@apply cursor-pointer opacity-75 transition
ease-in-out duration-200 inline-block select-none
hover:opacity-100 hover:text-teal-600;
font-size: 0.9em;
}