52 lines
879 B
SCSS
52 lines
879 B
SCSS
@use '@/assets/css/constants' as constants;
|
|
|
|
[data-component=component-repository-card] {
|
|
height: 100%;
|
|
|
|
.repository-card {
|
|
width: 100%;
|
|
height: 100%;
|
|
text-align: center;
|
|
align-items: center;
|
|
|
|
> * {
|
|
display: block;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
padding: 10px;
|
|
|
|
.version-select {
|
|
width: 9em;
|
|
margin-right: auto;
|
|
}
|
|
|
|
>:not(.version-select) {
|
|
font-size: 1.6em;
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
display: flex;
|
|
padding-top: 10px;
|
|
padding-bottom: 20px;
|
|
color: constants.$production-color;
|
|
font-size: constants.$SIZE_ICON_XL;
|
|
justify-content: center;
|
|
|
|
img {
|
|
width: constants.$SIZE_ICON_XL;
|
|
}
|
|
}
|
|
|
|
.tool-name {
|
|
font-weight: bolder;
|
|
font-size: 1.6em;
|
|
}
|
|
}
|
|
}
|