@burh/nuxt-core 1.0.442 → 1.0.443
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.
|
@@ -6,10 +6,13 @@
|
|
|
6
6
|
>
|
|
7
7
|
<template>
|
|
8
8
|
<div class="plan">
|
|
9
|
-
<img :src="cover" alt="" />
|
|
9
|
+
<img :src="cover" alt="" class="cover" />
|
|
10
10
|
|
|
11
11
|
<div class="plan__modal">
|
|
12
12
|
<section class="plan__information">
|
|
13
|
+
<div class="plan__information--img" draggable="false">
|
|
14
|
+
<img src="/img/lis.png" alt="Customer Success" draggable="false">
|
|
15
|
+
</div>
|
|
13
16
|
<h4>
|
|
14
17
|
Você vai amar o Plano Empresas. <br />
|
|
15
18
|
Dê um Upgrade no seu R&S
|
|
@@ -150,7 +153,7 @@ export default {
|
|
|
150
153
|
.plan {
|
|
151
154
|
background: #fff;
|
|
152
155
|
border-radius: 0.4375rem;
|
|
153
|
-
img {
|
|
156
|
+
img.cover {
|
|
154
157
|
width: 100%;
|
|
155
158
|
height: 8.12rem;
|
|
156
159
|
object-fit: cover;
|
|
@@ -177,6 +180,18 @@ export default {
|
|
|
177
180
|
width: 53%;
|
|
178
181
|
word-break: break-word !important;
|
|
179
182
|
|
|
183
|
+
&--img {
|
|
184
|
+
display: flex;
|
|
185
|
+
align-items: center;
|
|
186
|
+
flex-direction: column;
|
|
187
|
+
margin-bottom: 5px;
|
|
188
|
+
user-select: none;
|
|
189
|
+
img {
|
|
190
|
+
display: block;
|
|
191
|
+
width: 80px;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
180
195
|
h4 {
|
|
181
196
|
font-style: normal;
|
|
182
197
|
font-weight: 600;
|