92 lines
2.0 KiB
SCSS
92 lines
2.0 KiB
SCSS
@import '../../../colors.scss';
|
|
|
|
.application-list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.no-any-app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: $gray-icon-secondary;
|
|
|
|
p {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.toast-area {
|
|
position: fixed;
|
|
top: 60px;
|
|
right: 30px;
|
|
z-index: 100000;
|
|
|
|
.toast {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
background-color: #eef0ef;
|
|
border-radius: 7px;
|
|
width: 400px;
|
|
min-height: 70px;
|
|
border: 1px solid #dcdfdd;
|
|
box-shadow: 0 2px 15px 2px rgba(#383633, .2);
|
|
|
|
mat-icon {
|
|
color: green;
|
|
$icon-size: 35px;
|
|
width: $icon-size;
|
|
height: $icon-size;
|
|
font-size: $icon-size;
|
|
margin: 15px;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
justify-content: left;
|
|
flex-direction: column;
|
|
flex: 1 0 auto;
|
|
margin: 0;
|
|
padding: 1rem 0;
|
|
line-height: 20px;
|
|
|
|
.title {
|
|
font-weight: 600;
|
|
color: #484e5a;
|
|
}
|
|
|
|
.message {
|
|
display: flex;
|
|
color: #524f4b;
|
|
flex-wrap: wrap;
|
|
overflow-x: hidden;
|
|
}
|
|
}
|
|
|
|
button {
|
|
position: absolute;
|
|
right: 0;
|
|
background-color: #eef0ef;
|
|
background-image: none;
|
|
color: #737271;
|
|
font-weight: 600;
|
|
border-radius: 0 7px 7px 0;
|
|
border-left: 1px solid #d7d9d8;
|
|
height: 100%;
|
|
padding: 2px 5px;
|
|
margin: 0;
|
|
border: 1px solid #dcdfdd;
|
|
|
|
&:active {
|
|
background-color: #e2e4e3;
|
|
border-left: 1px solid #c3c5c4;
|
|
}
|
|
}
|
|
}
|
|
} |