Skip to content

Commit

Permalink
Use color vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Lindsey Zylstra committed Nov 19, 2024
1 parent e3d8c77 commit e63a762
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion components/Block/Carousel/Carousel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ onMounted(async () => {
}
&__button {
color: #333;
padding: var(--space-2);
&__svg {
width: 24px;
Expand Down
4 changes: 2 additions & 2 deletions components/Block/MasonryGrid/MasonryGridCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const isExternal = computed(() => !!cardData.value?.external_url);
top: 0;
left: 0;
padding: var(--space-7);
color: #455466;
color: var(--gray-600);
font-family: var(--family-display);
font-size: var(--font-size-2xl);
font-weight: 600;
Expand All @@ -122,7 +122,7 @@ const isExternal = computed(() => !!cardData.value?.external_url);
background: rgba(255, 255, 255, 0.8);
padding: var(--space-3) var(--space-4);
border-radius: var(--rounded-md);
color: #6b7b8c;
color: var(--gray-500);
font-size: var(--font-size-base);
font-family: var(--family-display);
line-height: var(--line-height-base);
Expand Down
5 changes: 3 additions & 2 deletions components/Block/WallOfLove/Testimonial.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,13 @@ const logoImageUrl = computed(() => {
<style lang="scss" scoped>
.testimonial-card {
border-radius: var(--rounded-xl);
border: 1px solid #d3dae4;
background: #fff;
border: 1px solid var(--gray-200);
background: var(--background);
display: flex;
min-width: 358px;
min-height: 330px;
padding: var(--space-8);
color: var(--foreground);
flex-direction: column;
gap: var(--space-8);
Expand Down
2 changes: 1 addition & 1 deletion components/Block/WallOfLove/WallOfLove.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const toggleShowAll = () => {
align-items: center;
.wall-heading {
color: #455466;
color: var(--gray-500);
font-size: var(--font-size-2xl);
font-style: normal;
font-weight: 600;
Expand Down

0 comments on commit e63a762

Please sign in to comment.