classcard-ui 0.2.467 → 0.2.470

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "classcard-ui",
3
- "version": "0.2.467",
3
+ "version": "0.2.470",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -1,18 +1,18 @@
1
1
  <template>
2
2
  <div class="sticky top-0 z-10 bg-transparent backdrop-blur-xl">
3
3
  <div
4
- class="flex sm:max-w-full flex-col items-start justify-between pt-4 pb-2 sm:pb-1 sm:flex-row sm:items-center"
4
+ class="flex flex-col items-start justify-between pt-4 pb-2 sm:max-w-full sm:flex-row sm:items-center sm:pb-1"
5
5
  >
6
6
  <div>
7
7
  <h2
8
- class="text-xl mt-1 sm:mt-0 font-bold leading-7 text-gray-900 sm:truncate sm:text-xl"
8
+ class="mt-1 text-xl font-bold leading-7 text-gray-900 sm:mt-0 sm:truncate sm:text-xl"
9
9
  >
10
10
  {{ title }}
11
11
  </h2>
12
12
  </div>
13
13
  <div class="justify-self-end">
14
14
  <slot></slot>
15
- <div v-if="buttonType" class="flex mt-5 sm:mt-0 lg:mt-0 lg:ml-4">
15
+ <div v-if="buttonType" class="mt-5 flex sm:mt-0 lg:mt-0 lg:ml-4">
16
16
  <span class="sm:ml-3">
17
17
  <c-button
18
18
  :label="buttonType.label"
@@ -22,7 +22,7 @@
22
22
  :key="tab.text"
23
23
  @click="switchTab(tab.name)"
24
24
  :class="
25
- activeTab == tab.text
25
+ activeTab == tab.name
26
26
  ? 'border-indigo-600 text-indigo-700 hover:text-indigo-800'
27
27
  : 'border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700'
28
28
  "