Skip to content

Commit

Permalink
Fix card scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBartusek committed Jun 4, 2021
1 parent 30bcd7e commit ac123ce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,16 @@ export default css`
{
display: none;
}
:host([narrow]) .status {
display: none;
}
:host([narrow]) .status-narrow {
display: flex;
}
:host([verynarrow]) .status, :host([verynarrow]) .status-narrow, , :host([verynarrow]) .status-both {
:host([verynarrow]) .status, :host([verynarrow]) .status-narrow, :host([verynarrow]) .status-both {
display: none;
}
`;

0 comments on commit ac123ce

Please sign in to comment.