Skip to content

Commit

Permalink
fix whitespace in snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiankaegy committed Sep 23, 2024
1 parent bf916b1 commit efbe49c
Showing 1 changed file with 31 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,45 +183,45 @@ exports[`postcss properly transforms css 1`] = `

exports[`postcss transforms accordion.css properly 1`] = `
":root {
--primary-font: 'Mr George', Arial, Helvetica, sans-serif;
--primary-font: "Mr George", arial, helvetica, sans-serif;
}
@font-face {
font-family: 'Mr George';
src: url('./assets/fonts/MrGeorgeHeavy.ttf') format('truetype');
font-weight: 900
font-family: "Mr George";
font-weight: 900;
src: url("./assets/fonts/MrGeorgeHeavy.ttf") format("truetype");
}
@font-face {
font-family: 'Mr George';
src: url('./assets/fonts/MrGeorge.ttf') format('truetype');
font-weight: 400
font-family: "Mr George";
font-weight: 400;
src: url("./assets/fonts/MrGeorge.ttf") format("truetype");
}
.accordion-header {
border-bottom: 1px solid #303030;
cursor: pointer;
font-size: 1em;
padding: 10px 0 10px 20px;
position: relative;
text-align: left;
width: 100%;
}
.accordion-header:before {
content: "+";
left: 5px;
position: absolute;
top: 8px;
}
.accordion-header.is-active:before {
content: "-";
}
.js .accordion-content {
display: none;
visibility: hidden;
border-bottom: 1px solid #303030;
cursor: pointer;
font-size: 1em;
padding: 10px 0 10px 20px;
position: relative;
text-align: left;
width: 100%;
}
.accordion-header::before {
content: "+";
left: 5px;
position: absolute;
top: 8px;
}
.accordion-header.is-active::before {
content: "-";
}
.js .accordion-content {
display: none;
visibility: hidden;
}
.js .accordion-content.is-active {
border-bottom: 1px solid #303030;
display: block;
visibility: visible;
}
border-bottom: 1px solid #303030;
display: block;
visibility: visible;
}
"
`;

Expand Down

0 comments on commit efbe49c

Please sign in to comment.