Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/FollowingCard/FollowingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const Link = styled.a`
const Item = styled.div`
display: flex;
align-items: center;
gap: 16px;
padding: 9px 22px;
gap: var(--maple-space-lg);
padding: var(--maple-space-sm) var(--maple-space-xl);
`

export const FollowingCard: FC<React.PropsWithChildren<Props>> = ({
Expand Down
8 changes: 4 additions & 4 deletions components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ const BrowseHeader = styled(NavLink)`
font-size: 1rem;
color: var(--maple-text-inverse);
padding: 0.5rem 1rem 0 0;
margin: 0 0 10px 0;
margin: 0 0 var(--maple-space-sm) 0;

@media (max-width: 768px) {
padding-bottom: 0.6rem;
padding-bottom: var(--maple-space-sm);
border-bottom: solid 1.5px var(--maple-border-inverse-soft);
margin: 0;
}
Expand All @@ -50,8 +50,8 @@ const BrowseHeader = styled(NavLink)`
const StyledInternalLink = styled(NavLink)`
color: var(--maple-text-inverse-muted);
letter-spacing: -0.63px;
padding-top: 4;
margin: 5px 0;
padding-top: var(--maple-space-xs);
margin: var(--maple-space-xs) 0;

&:hover {
color: var(--maple-text-inverse);
Expand Down
4 changes: 2 additions & 2 deletions components/Footer/FooterContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ export const FooterContainer = styled(Container)`
}

.navbar-dark .navbar-nav .nav-link {
color: rgba(255, 255, 255, 0.55);
color: var(--maple-text-inverse-muted);
}

.navbar-dark .navbar-nav,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
color: rgba(255, 255, 255, 1);
color: var(--maple-text-inverse);
}

.dropdown-toggle::after,
Expand Down
8 changes: 4 additions & 4 deletions components/HearingsScheduled/HearingsScheduled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Event types handled: sessions, hearings.
const EventCardContainer = styled.div`
border: 2px var(--bs-blue) solid;
width: 20rem; /* width: 269px; */
margin-bottom: 2em;
margin-bottom: var(--maple-space-2xl);
border-radius: 0.5rem;
display: block;
height: fit-content;
Expand All @@ -62,8 +62,8 @@ const EventCardContainer = styled.div`
const EventCardHeader = styled.div`
color: white;
background: var(--bs-blue);
padding-top: 0.25em;
padding-left: 1em;
padding-top: var(--maple-space-xs);
padding-left: var(--maple-space-lg);
height: 3.21em; /* 51.94px */
border-radius: 0.3125em 0.3125em 0 0;
display: grid;
Expand Down Expand Up @@ -144,7 +144,7 @@ export const EventCard = ({
const EventSection = styled.section`
min-width: fit-content;
max-width: 43rem;
margin-bottom: 2em;
margin-bottom: var(--maple-space-2xl);
`

const HearingImage = styled.img`
Expand Down
2 changes: 1 addition & 1 deletion components/TestimonyCard/ViewTestimony.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const FeedShell = styled.div`
border: 1px solid var(--maple-border-default);
border-radius: 0.75rem;
padding: 1.5rem;
box-shadow: 0 0.125rem 0.5rem rgba(15, 23, 42, 0.06);
box-shadow: var(--maple-shadow-sm);
`

const ControlsRow = styled(Row)`
Expand Down
Loading
Loading