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.
22 lines
449 B
22 lines
449 B
.collectible-default {
|
|
background-color: var(--color-background-alternative);
|
|
padding-top: 100%; // retains 1:1 aspect ratio
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
&__text {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
text-align: center;
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: calc(100% - 32px);
|
|
}
|
|
|
|
&--clickable {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|