@burh/nuxt-core 1.0.316 → 1.0.318
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,16 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
<h2 class="display-4 px-2">
|
|
6
6
|
Insira os e-mail que deseja enviar o treinamento <br>
|
|
7
|
-
|
|
8
|
-
<el-switch
|
|
9
|
-
v-model="switchSingle"
|
|
10
|
-
active-color="#5865F2"
|
|
11
|
-
inactive-text="Usuario em específico"
|
|
12
|
-
active-text="Enviar em massa">
|
|
13
|
-
</el-switch>
|
|
14
|
-
</div>
|
|
7
|
+
|
|
15
8
|
</h2>
|
|
16
9
|
</template>
|
|
10
|
+
<div class="switch-position">
|
|
11
|
+
<el-switch
|
|
12
|
+
v-model="switchSingle"
|
|
13
|
+
active-color="#5865F2"
|
|
14
|
+
inactive-text="Enviar para novos usuários"
|
|
15
|
+
active-text="Enviar por setor">
|
|
16
|
+
</el-switch>
|
|
17
|
+
</div>
|
|
17
18
|
<div v-if="switchSingle === false" style="min-height:100px">
|
|
18
19
|
<div class="row px-4">
|
|
19
20
|
<div class="col-4">
|
|
@@ -299,8 +300,15 @@ export default {
|
|
|
299
300
|
.pointer {
|
|
300
301
|
cursor: pointer;
|
|
301
302
|
}
|
|
303
|
+
.switch-position{
|
|
304
|
+
padding: 16px 0;
|
|
305
|
+
margin-bottom: 16px;
|
|
306
|
+
display: flex;
|
|
307
|
+
align-items: center;
|
|
308
|
+
justify-content: center;
|
|
309
|
+
}
|
|
302
310
|
/deep/ .el-switch__label{
|
|
303
|
-
height: 13.5px !important;
|
|
311
|
+
/* height: 13.5px !important; */
|
|
304
312
|
&.is-active{
|
|
305
313
|
color: #5865F2 !important;
|
|
306
314
|
}
|