fix circular images in instructions markdown modal

This commit is contained in:
Lucy Cifferello
2022-06-17 15:57:09 -06:00
committed by Lucy C
parent 0ac5b34f2d
commit 889cf03c1c
2 changed files with 16 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
.content-padding { .content-padding {
padding: 0 16px 16px 16px padding: 0 16px 16px 16px;
}
:host ::ng-deep img {
border-radius: 0 !important;
} }

View File

@@ -65,7 +65,7 @@ $subheader-height: 48px;
} }
.subheader-padding { .subheader-padding {
--padding-top: #{$subheader-height} + 10px; --padding-top: #{$subheader-height}+10px;
} }
.subheader { .subheader {
@@ -84,6 +84,7 @@ $subheader-height: 48px;
margin-bottom: 6px; margin-bottom: 6px;
font-size: medium; font-size: medium;
font-weight: bold; font-weight: bold;
* { * {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
@@ -223,6 +224,7 @@ ion-button {
--width: 90% !important; --width: 90% !important;
--max-width: 900px !important; --max-width: 900px !important;
} }
.alert-message { .alert-message {
max-height: unset; max-height: unset;
} }
@@ -281,12 +283,15 @@ h2 {
25% { 25% {
content: ''; content: '';
} }
50% { 50% {
content: '.'; content: '.';
} }
75% { 75% {
content: '..'; content: '..';
} }
100% { 100% {
content: '...'; content: '...';
} }
@@ -296,16 +301,20 @@ h2 {
0% { 0% {
opacity: 1; opacity: 1;
} }
20% { 20% {
opacity: 0; opacity: 0;
} }
60% { 60% {
opacity: 0; opacity: 0;
} }
100% { 100% {
opacity: 1; opacity: 1;
} }
} }
.fader { .fader {
animation: flickerAnimation 4s infinite; animation: flickerAnimation 4s infinite;
} }