feat: remove tailwindcss + introduce windicss

This commit is contained in:
Liyas Thomas
2021-06-25 23:44:27 +00:00
committed by GitHub
parent 3e5629e738
commit 6d33132705
84 changed files with 1560 additions and 40544 deletions

View File

@@ -2,9 +2,9 @@
<SmartModal v-if="show" @close="hideModal">
<div slot="header">
<div class="row-wrapper">
<h3 class="title">{{ $t("new_environment") }}</h3>
<h3 class="heading">{{ $t("new_environment") }}</h3>
<div>
<button class="icon" @click="hideModal">
<button class="icon button" @click="hideModal">
<i class="material-icons">close</i>
</button>
</div>
@@ -15,6 +15,7 @@
<input
id="selectLabel"
v-model="name"
class="input"
type="text"
:placeholder="$t('my_new_environment')"
@keyup.enter="addNewEnvironment"
@@ -24,10 +25,10 @@
<div class="row-wrapper">
<span></span>
<span>
<button class="icon" @click="hideModal">
<button class="icon button" @click="hideModal">
{{ $t("cancel") }}
</button>
<button class="icon primary" @click="addNewEnvironment">
<button class="icon button primary" @click="addNewEnvironment">
{{ $t("save") }}
</button>
</span>