@layerfi/components 0.1.121-alpha → 0.1.121-alpha.1
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/dist/cjs/index.cjs +326 -173
- package/dist/esm/index.mjs +326 -173
- package/dist/index.css +15 -4
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -10268,7 +10268,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10268
10268
|
padding-inline: var(--spacing-md);
|
|
10269
10269
|
border-radius: var(--border-radius-2xs);
|
|
10270
10270
|
border: 1px solid var(--border-color);
|
|
10271
|
-
}.
|
|
10271
|
+
}.Layer__UI__ResponsiveComponent {
|
|
10272
10272
|
height: 100%;
|
|
10273
10273
|
width: 100%;
|
|
10274
10274
|
}.Layer__TripPurposeComboBox {
|
|
@@ -10333,6 +10333,8 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10333
10333
|
display: flex;
|
|
10334
10334
|
flex-direction: column;
|
|
10335
10335
|
gap: var(--spacing-sm);
|
|
10336
|
+
}.Layer__TripsMobileHeader__SearchField {
|
|
10337
|
+
flex: 1;
|
|
10336
10338
|
}.Layer__TripsMobileList .Layer__TripsView__EmptyState,
|
|
10337
10339
|
.Layer__TripsMobileList .Layer__TripsView__ErrorState {
|
|
10338
10340
|
padding: var(--spacing-sm);
|
|
@@ -10415,6 +10417,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10415
10417
|
.Layer__VehicleManagementGrid {
|
|
10416
10418
|
grid-template-columns: 1fr;
|
|
10417
10419
|
}
|
|
10420
|
+
}.Layer__VehicleManagementDetail__Header {
|
|
10421
|
+
display: flex;
|
|
10422
|
+
align-items: center;
|
|
10418
10423
|
}.Layer__project-view .Layer__category-menu {
|
|
10419
10424
|
max-width: 300px;
|
|
10420
10425
|
}
|
|
@@ -10448,7 +10453,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10448
10453
|
}
|
|
10449
10454
|
.Layer__AdjustedGrossIncomeTable .Layer__UI__Table-Row {
|
|
10450
10455
|
display: grid;
|
|
10451
|
-
grid-template-columns: minmax(
|
|
10456
|
+
grid-template-columns: minmax(15rem, 60%) minmax(10rem, 40%);
|
|
10452
10457
|
}
|
|
10453
10458
|
.Layer__AdjustedGrossIncomeTable .Layer__UI__Table-Row.Layer__AdjustedGrossIncomeTable__DeductionsRow {
|
|
10454
10459
|
background-color: var(--color-base-50);
|
|
@@ -10459,6 +10464,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10459
10464
|
.Layer__AdjustedGrossIncomeTable .Layer__UI__Table-Cell:nth-child(2) {
|
|
10460
10465
|
justify-content: flex-end;
|
|
10461
10466
|
text-align: right;
|
|
10467
|
+
}
|
|
10468
|
+
.Layer__AdjustedGrossIncomeTable__TotalRow {
|
|
10469
|
+
border-top: 2px solid var(--color-border);
|
|
10462
10470
|
}.Layer__FederalTaxTable {
|
|
10463
10471
|
width: 100%;
|
|
10464
10472
|
table-layout: fixed;
|
|
@@ -10468,7 +10476,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10468
10476
|
}
|
|
10469
10477
|
.Layer__FederalTaxTable .Layer__UI__Table-Row {
|
|
10470
10478
|
display: grid;
|
|
10471
|
-
grid-template-columns: minmax(
|
|
10479
|
+
grid-template-columns: minmax(15rem, 60%) minmax(10rem, 40%);
|
|
10472
10480
|
}
|
|
10473
10481
|
.Layer__FederalTaxTable .Layer__UI__Table-Row.Layer__FederalTaxTable_NestedRow {
|
|
10474
10482
|
background-color: var(--color-base-50);
|
|
@@ -10499,7 +10507,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10499
10507
|
}
|
|
10500
10508
|
.Layer__StateTaxTable .Layer__UI__Table-Row {
|
|
10501
10509
|
display: grid;
|
|
10502
|
-
grid-template-columns: minmax(
|
|
10510
|
+
grid-template-columns: minmax(15rem, 60%) minmax(10rem, 40%);
|
|
10503
10511
|
}
|
|
10504
10512
|
.Layer__StateTaxTable .Layer__UI__Table-Row.Layer__StateTaxTable_NestedRow {
|
|
10505
10513
|
background-color: var(--color-base-50);
|
|
@@ -10538,6 +10546,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10538
10546
|
}
|
|
10539
10547
|
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Row {
|
|
10540
10548
|
background-color: var(--color-base-50);
|
|
10549
|
+
}
|
|
10550
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Row.Layer__DataTable__EmptyState__Row {
|
|
10551
|
+
background-color: var(--color-base-0);
|
|
10541
10552
|
}.Layer__FilingStatusComboBox {
|
|
10542
10553
|
display: grid;
|
|
10543
10554
|
grid-template-areas: "label" "input";
|