@ansiversa/components 0.0.48 → 0.0.49
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 +10 -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
|
@@ -828,7 +828,7 @@
|
|
|
828
828
|
}
|
|
829
829
|
|
|
830
830
|
.av-table__th-order {
|
|
831
|
-
width:
|
|
831
|
+
width: 84px;
|
|
832
832
|
text-align: center;
|
|
833
833
|
white-space: nowrap;
|
|
834
834
|
}
|
|
@@ -881,6 +881,15 @@
|
|
|
881
881
|
justify-content: flex-end;
|
|
882
882
|
}
|
|
883
883
|
|
|
884
|
+
.av-admin-page-top {
|
|
885
|
+
padding-top: 1rem;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.av-faq-admin__count {
|
|
889
|
+
color: var(--ans-muted);
|
|
890
|
+
font-size: 0.875rem;
|
|
891
|
+
}
|
|
892
|
+
|
|
884
893
|
.av-table-toolbar input,
|
|
885
894
|
.av-table-toolbar .av-input {
|
|
886
895
|
position: relative;
|