@ansiversa/components 0.0.48 → 0.0.50
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/AvTableToolbar.astro +4 -2
- package/src/styles/global.css +19 -1
package/package.json
CHANGED
package/src/AvTableToolbar.astro
CHANGED
|
@@ -12,8 +12,10 @@ const { title, subtitle, className = "" } = Astro.props as Props;
|
|
|
12
12
|
|
|
13
13
|
<div class={`av-table-toolbar ${className}`}>
|
|
14
14
|
<div class="av-table-toolbar__left">
|
|
15
|
-
<
|
|
16
|
-
|
|
15
|
+
<slot name="title">
|
|
16
|
+
<h1 class="av-table-toolbar__title">{title}</h1>
|
|
17
|
+
{subtitle ? <p class="av-table-toolbar__subtitle">{subtitle}</p> : null}
|
|
18
|
+
</slot>
|
|
17
19
|
</div>
|
|
18
20
|
|
|
19
21
|
<div class="av-table-toolbar__right">
|
package/src/styles/global.css
CHANGED
|
@@ -238,6 +238,15 @@
|
|
|
238
238
|
flex: 0 0 auto;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
+
.av-faq-public__top {
|
|
242
|
+
padding-top: 1.25rem;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.av-faq-public__count {
|
|
246
|
+
color: var(--ans-muted);
|
|
247
|
+
font-size: 0.875rem;
|
|
248
|
+
}
|
|
249
|
+
|
|
241
250
|
@media (max-width: 640px) {
|
|
242
251
|
.av-faq-summary {
|
|
243
252
|
flex-wrap: wrap;
|
|
@@ -828,7 +837,7 @@
|
|
|
828
837
|
}
|
|
829
838
|
|
|
830
839
|
.av-table__th-order {
|
|
831
|
-
width:
|
|
840
|
+
width: 84px;
|
|
832
841
|
text-align: center;
|
|
833
842
|
white-space: nowrap;
|
|
834
843
|
}
|
|
@@ -881,6 +890,15 @@
|
|
|
881
890
|
justify-content: flex-end;
|
|
882
891
|
}
|
|
883
892
|
|
|
893
|
+
.av-admin-page-top {
|
|
894
|
+
padding-top: 1rem;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.av-faq-admin__count {
|
|
898
|
+
color: var(--ans-muted);
|
|
899
|
+
font-size: 0.875rem;
|
|
900
|
+
}
|
|
901
|
+
|
|
884
902
|
.av-table-toolbar input,
|
|
885
903
|
.av-table-toolbar .av-input {
|
|
886
904
|
position: relative;
|