@ansiversa/components 0.0.46 → 0.0.48
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 +1 -1
- package/src/AvNavbarActions.astro +0 -10
- package/src/styles/global.css +25 -3
package/package.json
CHANGED
|
@@ -158,16 +158,6 @@ const userInitial =
|
|
|
158
158
|
<a href={`${ROOT_URL}/settings`} class="av-user-menu-item av-dropdown-item" role="menuitem">
|
|
159
159
|
<span>Settings</span>
|
|
160
160
|
</a>
|
|
161
|
-
|
|
162
|
-
{/* <form method="POST" action="https://www.ansiversa.com/signout">
|
|
163
|
-
<button
|
|
164
|
-
type="submit"
|
|
165
|
-
class="av-user-menu-item av-dropdown-item av-user-menu-item--danger"
|
|
166
|
-
role="menuitem"
|
|
167
|
-
>
|
|
168
|
-
<span>Sign out</span>
|
|
169
|
-
</button>
|
|
170
|
-
</form> */}
|
|
171
161
|
<a
|
|
172
162
|
href={`${ROOT_URL}/signout`}
|
|
173
163
|
class="av-user-menu-item av-dropdown-item av-user-menu-item--danger"
|
package/src/styles/global.css
CHANGED
|
@@ -252,9 +252,15 @@
|
|
|
252
252
|
|
|
253
253
|
/* FAQ admin */
|
|
254
254
|
.av-faq-admin__header {
|
|
255
|
+
display: grid;
|
|
256
|
+
gap: 0.4rem;
|
|
255
257
|
padding: 0.75rem 0;
|
|
256
258
|
}
|
|
257
259
|
|
|
260
|
+
.av-faq-admin__title {
|
|
261
|
+
font-size: 1.5rem;
|
|
262
|
+
}
|
|
263
|
+
|
|
258
264
|
.av-faq-admin__section .av-container {
|
|
259
265
|
padding-top: 1rem;
|
|
260
266
|
}
|
|
@@ -812,8 +818,8 @@
|
|
|
812
818
|
|
|
813
819
|
/* table column sizing + alignment */
|
|
814
820
|
.av-table__th-actions {
|
|
815
|
-
width:
|
|
816
|
-
text-align:
|
|
821
|
+
width: 150px;
|
|
822
|
+
text-align: center;
|
|
817
823
|
white-space: nowrap;
|
|
818
824
|
}
|
|
819
825
|
|
|
@@ -822,7 +828,8 @@
|
|
|
822
828
|
}
|
|
823
829
|
|
|
824
830
|
.av-table__th-order {
|
|
825
|
-
width:
|
|
831
|
+
width: 60px;
|
|
832
|
+
text-align: center;
|
|
826
833
|
white-space: nowrap;
|
|
827
834
|
}
|
|
828
835
|
|
|
@@ -838,6 +845,8 @@
|
|
|
838
845
|
justify-content: space-between;
|
|
839
846
|
gap: 1rem;
|
|
840
847
|
margin-bottom: 0.75rem;
|
|
848
|
+
position: relative;
|
|
849
|
+
z-index: 1;
|
|
841
850
|
}
|
|
842
851
|
|
|
843
852
|
.av-table-toolbar__title {
|
|
@@ -872,6 +881,12 @@
|
|
|
872
881
|
justify-content: flex-end;
|
|
873
882
|
}
|
|
874
883
|
|
|
884
|
+
.av-table-toolbar input,
|
|
885
|
+
.av-table-toolbar .av-input {
|
|
886
|
+
position: relative;
|
|
887
|
+
z-index: 1;
|
|
888
|
+
}
|
|
889
|
+
|
|
875
890
|
/* PAGER */
|
|
876
891
|
.av-table-pager {
|
|
877
892
|
display: flex;
|
|
@@ -971,6 +986,13 @@
|
|
|
971
986
|
|
|
972
987
|
.av-navbar {
|
|
973
988
|
@apply border-b border-slate-800/60 bg-slate-950/60 backdrop-blur-xl;
|
|
989
|
+
position: relative;
|
|
990
|
+
z-index: 50;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.av-navbar__dropdown {
|
|
994
|
+
position: absolute;
|
|
995
|
+
z-index: 60;
|
|
974
996
|
}
|
|
975
997
|
|
|
976
998
|
.av-navbar-inner {
|