nitro-react/src/views/purse/PurseView.scss

38 lines
834 B
SCSS
Raw Normal View History

2021-04-19 18:34:31 +02:00
.nitro-purse {
2021-09-16 07:27:23 +02:00
background-color: rgba($dark,.95);
2021-07-07 04:26:22 +02:00
font-size: $font-size-sm;
2021-07-23 09:12:53 +02:00
pointer-events: all;
2021-09-16 07:27:23 +02:00
margin-bottom: 5px;
padding: 6px 5px;
box-shadow: inset 0px 5px lighten(rgba($dark,.6),2.5), inset 0 -4px darken(rgba($dark,.6),4);
2021-06-22 09:08:16 +02:00
.notification-button {
color:lighten($dark,20);
cursor: pointer;
font-size: 0.9rem;
2021-06-22 11:52:47 +02:00
pointer-events: all;
2021-07-07 04:26:22 +02:00
display: none
2021-06-22 09:08:16 +02:00
}
2021-07-23 09:12:53 +02:00
.nitro-purse-hc {
2021-09-16 07:27:23 +02:00
background-color: rgba($light,.1);
margin: 0 5px;
2021-07-23 09:12:53 +02:00
}
.nitro-purse-button {
2021-09-16 07:27:23 +02:00
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
padding: 2px 3px;
border-radius: $border-radius;
2021-07-23 09:12:53 +02:00
2021-09-16 07:27:23 +02:00
&:last-child {
border-bottom: none;
2021-07-23 09:12:53 +02:00
}
&:hover {
2021-09-16 07:27:23 +02:00
background-color: rgba($light,.1);
2021-07-23 09:12:53 +02:00
}
}
2021-04-19 18:34:31 +02:00
}
2021-07-24 10:03:46 +02:00
@import './views';