Skip to content
Snippets Groups Projects
Commit 919e4b80 authored by Simon Malesys's avatar Simon Malesys
Browse files

Increase dialog size

parent 267371a8
No related branches found
No related tags found
No related merge requests found
...@@ -261,7 +261,6 @@ function removeFilter (filterChip: FilterChip): void { ...@@ -261,7 +261,6 @@ function removeFilter (filterChip: FilterChip): void {
gap: var(--spacing); gap: var(--spacing);
padding-left: var(--spacing); padding-left: var(--spacing);
padding-bottom: var(--spacing); padding-bottom: var(--spacing);
max-width: 800px;
} }
.checkbox { .checkbox {
......
...@@ -85,19 +85,20 @@ function closeFromOutside (event: MouseEvent): void { ...@@ -85,19 +85,20 @@ function closeFromOutside (event: MouseEvent): void {
<style scoped> <style scoped>
dialog { dialog {
background: var(--black); background: var(--black);
border: 1px solid var(--white);
border-radius: var(--radius); border-radius: var(--radius);
border: 1px solid var(--white);
color: var(--white); color: var(--white);
max-height: 75%; max-height: 80%;
width: min(100%, 1000px);
} }
dialog::backdrop { dialog::backdrop {
/* /*
Hardcode the color since ::backdrop neither inherits Hardcode the color since ::backdrop neither inherits
from nor is inherited by any other elements. from nor is inherited by any other elements.
Use of CSS variables from :root is thus impossible. The use of CSS variables from :root is thus impossible.
*/ */
background: hsla(0, 0%, 0%, 0.5); background-color: hsla(0, 0%, 0%, 0.5);
} }
.close-button { .close-button {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment