Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rrusher committed Jun 18, 2024
1 parent 74260f6 commit e3506ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions blocks/property/property.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
.property.block .property-details {
display: flex;
flex-wrap: wrap;
padding: 15px 0 20px 0;
padding: 15px 0 20px;
}

.property.block .backnav {
.property.block .property-details .backnav {
flex: 0 0 100%;
max-width: 100%;
}

.property.block .back a {
.property.block .property-details .back a {
font-family: var(--font-family-primary);
font-size: 12px;
font-style: normal;
Expand All @@ -35,7 +35,7 @@
max-width: 100%;
}

.property.block .property-address {
.property.block .property-info .property-address {
font-size: var(--heading-font-size-l);
font-style: normal;
font-weight: 400;
Expand All @@ -45,7 +45,7 @@
font-family: var(--font-family-secondary);
}

.property.block .property-specs {
.property.block .property-info .property-specs {
font-family: var(--font-family-primary);
font-size: var(--body-font-size-xs);
font-style: normal;
Expand All @@ -55,7 +55,7 @@
color: #2a2223;
}

.property.block .courtesy {
.property.block .property-info .courtesy {
font-family: var(--font-family-primary);
font-size: var(--body-font-size-xxs);
font-style: normal;
Expand Down
4 changes: 3 additions & 1 deletion blocks/property/property.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { decorateIcons } from '../../scripts/aem.js';
import { getEnvelope } from '../../scripts/apis/creg/creg.js';
import { a, div, img, p, span } from '../../scripts/dom-helpers.js';
import {
a, div, img, p, span,
} from '../../scripts/dom-helpers.js';
import { formatCurrency, formatNumber } from '../../scripts/util.js';

/**
Expand Down

0 comments on commit e3506ed

Please sign in to comment.