Fix positioning of preload checkbox (#9115)

This commit is contained in:
Bram Kragten 2021-05-07 11:16:25 +02:00 committed by GitHub
parent abcdd60a21
commit a9c7a39a47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,13 +115,17 @@ class MoreInfoCamera extends LitElement {
static get styles(): CSSResult {
return css`
:host {
display: block;
position: relative;
}
paper-checkbox {
position: absolute;
top: 0;
right: 0;
background-color: var(--secondary-background-color);
padding: 5px;
border-bottom-left-radius: 6px;
border-bottom-left-radius: 4px;
}
`;
}