This commit is contained in:
2025-09-25 03:03:31 +05:00
commit ae480cf2f6
2768 changed files with 1485826 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
.px-1\.5 {
padding-left: 0.375rem;
padding-right: 0.375rem;
}
.text-black {
color: black;
}
.text-green-800 {
color: rgb(22 101 52);
}
.text-red-800 {
color: rgb(153 27 27);
}
.text-green-darker {
color: #003e17;
}
.fit-content {
width: fit-content;
}
.nova-grid--field-wrapper {
border-top-color: rgba(0, 0, 0, 0) !important;
border-right-color: rgba(0, 0, 0, 0) !important;
border-bottom-color: rgba(0, 0, 0, 0) !important;
border-left-color: rgba(0, 0, 0, 0) !important;
/* border-bottom: 1px solid rgb(51,65,85) !important;*/
/* border: none !important;*/
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@@ -0,0 +1,14 @@
window.Event.fire = (event, el) => {
return ( el )
? document.querySelector(el).dispatchEvent(new Event(event))
: document.dispatchEvent(new Event(event))
}
window.Event.listen = (event, elemOrCallback, callback) => {
return (typeof elemOrCallback === 'function')
? document.addEventListener(event, elemOrCallback)
: document.querySelector(elemOrCallback).addEventListener(event, callback)
}
window.LaraStore = {};
window.LaraStore.data = [];