Skip to content

Commit

Permalink
fix(Code Cyphers): Fixes issues with the Borg font formatting. Closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Anderson committed Jan 25, 2020
1 parent f640caf commit d7335b5
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/components/views/CodeCyphers/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
line-height: 1.5;
margin: 0 30px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
}
.card {
Expand All @@ -33,6 +36,7 @@
}

.cypher-printing {
background: white;
.code-list {
font-size: 63px;
max-height: 90vh;
Expand Down Expand Up @@ -121,7 +125,7 @@
.Borg {
font-family: "Borg";
line-height: 0;
font-size: 120px;
font-size: 64px;
}
.DwarfSpiritas {
font-family: "DwarfSpiritas";
Expand Down Expand Up @@ -155,6 +159,14 @@
}
}
@media print {
body {
background-color: white;
}
.cypher-printing {
.Borg {
line-height: 2;
}
}
.core-container {
*:not(.printable) {
visibility: hidden;
Expand Down Expand Up @@ -199,6 +211,8 @@
line-height: 1.5;
margin: 0 30px;
text-align: center;
display: flex;
align-items: center;
}
}
width: 100vw;
Expand Down

0 comments on commit d7335b5

Please sign in to comment.