Files
idp/idp_client/src/styles.scss
Bastian Wagner 561ce15dd6 logging
2024-09-11 10:42:54 +02:00

84 lines
1.4 KiB
SCSS

@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');
html, body {
margin: 0;
padding: 0;
overflow: hidden;
font-family: Raleway, sans-serif;
background-color: #f0f0f0;
}
.safe {
background-image: url("assets/icons/safe-box.svg");
}
.user {
background-image: url("assets/icons/user.svg");
}
.logout {
background-image: url("assets/icons/logout.svg");
}
.flex-row{
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
justify-content: space-between;
}
.create-client__dialog{
width: 70vw;
min-width: 500px;
max-width: calc(100vw - 24px);
height: 70vh;
min-height: 600px;
max-height: 100vh;
}
.global-spinner{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(80, 80, 80, 0.3);
display: flex;
align-items: center;
justify-content: center;
}
.mat-horizontal-content-container{
flex: 1 1 auto;
display: flex;
flex-direction: column;
}
.mat-horizontal-stepper-content {
flex: 1 1 auto;
display: flex;
flex-direction: column;
}
mat-dialog-content {
flex: 1 1 auto;
}
mat-dialog-content {
height: 100%;
}
mat-stepper {
height: 100%;
}
.mat-horizontal-stepper-wrapper {
height: 100%;
}
.mat-horizontal-stepper-content-inactive {
height: 0;
max-height: 0;
}