File tree Expand file tree Collapse file tree 5 files changed +17
-11
lines changed
Expand file tree Collapse file tree 5 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -205,13 +205,19 @@ hr {
205205
206206.nav-underline {
207207 border-bottom : 1px solid var (--bs-border-color );
208- }
209-
210- .nav-underline .nav-link.active ,
211- .nav-underline .show > .nav-link {
212- font-weight : var (--cp-font-weight-medium );
213- border-bottom-color : var (--cp-color-primary );
214- color : var (--cp-color-green-800 );
208+ .nav-link {
209+ color : color - mix (
210+ in oklch,
211+ var (--cp-color-green-600 ),
212+ var (--bs-gray-700 ) 50%
213+ );
214+ }
215+ .nav-link.active ,
216+ .show > .nav-link {
217+ font-weight : var (--cp-font-weight-medium );
218+ border-bottom-color : var (--cp-color-primary );
219+ color : var (--cp-color-green-800 );
220+ }
215221}
216222
217223// badge
Original file line number Diff line number Diff line change 22 <div ref =" cardTableContainer" >
33 <table
44 v-if =" shouldRenderAsRows && hasItems"
5- class =" card-table card-table-table my-2 "
5+ class =" card-table card-table-table"
66 :class =" { compact, 'rounded-3 shadow-sm bg-white': standalone }"
77 >
88 <thead >
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ const doAddLabel = async () => {
170170 :items =" tableItems"
171171 compact
172172 class =" flex-fill flex-grow-1"
173- :class =" { 'mb-3': tableItems.length }"
173+ :class =" { 'p-1 p-md-0 mb-3': tableItems.length }"
174174 >
175175 <template #_deleteAction =" { cell } " >
176176 <button
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ const doAddNote = async () => {
122122 :items =" tableItems"
123123 compact
124124 class =" flex-fill flex-grow-1"
125- :class =" { 'mb-3': tableItems.length }"
125+ :class =" { 'p-1 p-md-0 mb-3': tableItems.length }"
126126 >
127127 <template #_deleteAction =" { cell } " >
128128 <button
Original file line number Diff line number Diff line change @@ -944,7 +944,7 @@ onMounted(async () => {
944944 </div >
945945 <div
946946 v-else-if =" showTaggerDetails && taggerDetails.length === 0"
947- class =" mb-2 "
947+ class =" p-2 text-center text-muted fs-6 "
948948 >
949949 No tags have been added yet.
950950 </div >
You can’t perform that action at this time.
0 commit comments