@dcrackel/hematournamentui 1.0.281 → 1.0.283
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/dist/HemaTournamentUI-lib.es.js +6 -6
- package/dist/HemaTournamentUI-lib.umd.js +18 -18
- package/package.json +1 -1
- package/src/stories/Molecules/Buttons/BaseButton/BaseButton.vue +1 -1
- package/src/stories/Organisms/ScoreBoardParts/ScoreBar/ScoreBar.vue +1 -1
- package/src/stories/Templates/Menus/Admin/AdminLeftMenu.vue +4 -4
package/package.json
CHANGED
|
@@ -68,7 +68,7 @@ export default {
|
|
|
68
68
|
tertiary: `px-2.5 py-0.5 items-center gap-2.5 rounded-md text-center justify-center border border-dropdownSelect hover:bg-dropdownSelect ${props.selected ? 'bg-primary' : 'bg-tertiary'}`,
|
|
69
69
|
bright: `px-3 py-1 items-center gap-2.5 rounded-md text-center justify-center hover:bg-primary text-neutral ${props.selected ? 'bg-primary' : 'bg-bright'}`,
|
|
70
70
|
admin: `px-2.5 py-2 items-center rounded-md gap-2.5 text-center my-1 text-neutral hover:bg-primaryHighlight ${props.selected ? 'bg-primary' : 'bg-primary'}`,
|
|
71
|
-
adminSecondary: `px-2.5 py-
|
|
71
|
+
adminSecondary: `px-2.5 py-1.5 my-1 rounded-md items-center gap-2.5 text-center hover:bg-bright w-full text-neutral ${props.selected ? 'bg-primary' : 'bg-primary'}`,
|
|
72
72
|
iconOnly: `px-0.5 items-center rounded-full text-center text-tertiary shadow border border-dropdownSelect justify-center bg-primaryHighlight`,
|
|
73
73
|
editor: `px-1 items-center rounded-md text-center justify-center hover:bg-tertiary`,
|
|
74
74
|
square: `p-8 my-3 items-center gap-2.5 rounded-md text-center shadow border border-dropdownSelect justify-center hover:bg-tertiary ${props.selected ? 'bg-dropdownSelect' : 'bg-neutral'}`,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="bg-secondary min-h-screen flex flex-col justify-between w-
|
|
2
|
+
<div class="bg-secondary min-h-screen flex flex-col justify-between w-40">
|
|
3
3
|
<section class="h-28 border-b border-neutral">
|
|
4
4
|
<div class="flex flex-col justify-center h-28">
|
|
5
5
|
<div class="flex justify-center">
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
:label="button.label"
|
|
15
15
|
:iconName="button.iconName"
|
|
16
16
|
type="adminSecondary"
|
|
17
|
-
size="
|
|
17
|
+
size="sm"
|
|
18
18
|
@click="handleButtonClick(button)"
|
|
19
19
|
/>
|
|
20
20
|
</section>
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
iconName="fa-user"
|
|
26
26
|
label="Account"
|
|
27
27
|
type="adminSecondary"
|
|
28
|
-
size="
|
|
28
|
+
size="sm"
|
|
29
29
|
@click="handleAccount()"
|
|
30
30
|
/>
|
|
31
31
|
<BaseButton
|
|
32
32
|
iconName="fa-right-to-bracket"
|
|
33
33
|
label="Log Out"
|
|
34
34
|
type="adminSecondary"
|
|
35
|
-
size="
|
|
35
|
+
size="sm"
|
|
36
36
|
@click="handleLogOut()"
|
|
37
37
|
/>
|
|
38
38
|
</div>
|