You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frontend/src/app/components/version-modal/version-modal.component.scss

51 lines
747 B

.container {
display: flex;
flex-direction: column;
height: 100%;
.header {
background: lightgrey;
display: flex;
flex-direction: row;
.title {
flex: 1;
padding: 10px;
font-size: 1.2em;
}
.close {
padding: 10px 15px;
background: #ff6666;
color: white;
}
}
.contents {
height: 100%;
overflow-y: hidden;
display: flex;
flex-direction: row;
ion-list {
height: 100%;
overflow-y: scroll;
max-width: 325px;
}
.preview {
flex: 1;
height: 100%;
overflow-y: scroll;
}
.version-date {
font-weight: normal;
}
.current-version {
color: darkgreen;
margin-left: 10px;
}
}
}