salix/front/core/components/debug-info/style.scss

44 lines
916 B
SCSS
Raw Normal View History

2019-10-23 15:38:35 +00:00
@import "variables";
vn-debug-info {
position: fixed;
2020-04-02 12:20:57 +00:00
bottom: 16px;
left: 16px;
padding: 16px;
min-width: 128px;
2019-10-23 15:38:35 +00:00
background-color: #3f51b5;
color: $color-font-dark;
border-radius: 4px;
z-index: 999;
box-shadow: $shadow;
transition: opacity 400ms ease-in-out;
&:hover {
opacity: .5;
}
& > h6 {
font-weight: normal;
color: rgba(255, 255, 255, .5);
2020-04-02 12:52:02 +00:00
font-size: 1rem;
2019-10-23 15:38:35 +00:00
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
& > li {
2020-04-02 12:20:57 +00:00
margin-top: 3px;
2020-04-02 12:52:02 +00:00
font-size: 15px;
2019-10-23 15:38:35 +00:00
& > span {
2020-04-02 12:52:02 +00:00
padding: 1px 3px;
2019-10-23 15:38:35 +00:00
border-radius: 4px;
transition: background-color 200ms ease-in-out;
&.alert {
background-color: $color-alert;
}
}
}
}
}