ketekny-ui-kit 1.0.67 → 1.0.68

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,7 +1,7 @@
1
1
  {
2
2
  "name": "ketekny-ui-kit",
3
3
  "type": "module",
4
- "version": "1.0.67",
4
+ "version": "1.0.68",
5
5
  "description": "A Vue 3 UI component library with Tailwind CSS styling",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -37,7 +37,9 @@
37
37
  class="cursor-pointer px-4 py-4 transition-all duration-300"
38
38
  />
39
39
  </button>
40
- <div v-if="title && !isSidebarCollapsed" class="py-3 mt-3 text-lg text-center bg-[#da0000]">
40
+ <div v-if="title && !isSidebarCollapsed"
41
+ :class="showSponsors ? 'border-b border-white/30 ' : ''"
42
+ class="py-3 mt-3 text-xl font-bold text-center bg-[#0f4e8d]">
41
43
  {{ title }}
42
44
  </div>
43
45
  <div v-if="showSponsors && !isSidebarCollapsed" class="flex flex-col gap-3 px-4 py-4 bg-[#0f4e8d]">
@@ -145,24 +147,24 @@
145
147
  {{ displayEmail }}
146
148
  </p>
147
149
  </div>
148
- <div class="flex flex-wrap gap-2">
150
+ <div class="flex flex-wrap justify-between gap-2">
149
151
  <kButton
150
152
  v-if="!account.loggedIn"
151
153
  secondary
152
154
  icon="LogIn"
153
- label="Sign in"
155
+ label="Σύνδεση"
154
156
  @click="$emit('signin')"
155
157
  />
156
158
  <kButton
157
159
  v-if="!account.loggedIn"
158
160
  secondary
159
161
  icon="UserPlus"
160
- label="Sign up"
162
+ label="Εγγραφή"
161
163
  @click="$emit('signup')"
162
164
  />
163
165
  <kButton
164
166
  v-if="account.loggedIn"
165
- secondary
167
+ variant="soft"
166
168
  icon="UserRoundCog"
167
169
  label="Επεξεργασία προφίλ"
168
170
  @click="$emit('edit-profile')"