Refactor store observer mecanism to pilot edition actions.

This commit is contained in:
Florian THIERRY
2022-03-04 16:09:45 +01:00
parent 182cc0bb67
commit da80bc17c0
12 changed files with 186 additions and 43 deletions

View File

@@ -1,4 +1,26 @@
/* You can add global styles to this file, and also import other style files */
html, body { height: 100%; }
body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }
body {
margin: 0;
font-family: Roboto, "Helvetica Neue", sans-serif;
padding-top: 4rem;
}
.shadowed {
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);
transition: box-shadow .2s ease-out;
&:hover {
box-shadow: 0 .2em .5em #777;
}
}
a.no-style {
color: inherit;
text-decoration: none;
}