0de546009e
* CSS color variables, less bold font weight - Define color variables for fully saturated colors and apply them where it made sense - Add background color helper classes - Globally reduce bold font weight from 700 to 500 - Remove border from timeline icons - Unify dropzone styling - Various border style consolidations * attempt to fix test * another attempt at tests * fix contains
49 lines
765 B
Text
49 lines
765 B
Text
#user-heatmap {
|
|
width: 107%; // Fixes newest contributions not showing
|
|
text-align: center;
|
|
|
|
svg:not(:root) {
|
|
overflow: inherit;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
& {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.total-contributions {
|
|
text-align: left;
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
.heatmap-container {
|
|
position: relative;
|
|
}
|
|
|
|
.heatmap-container .total-contributions {
|
|
font-size: 11px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 25px;
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
.heatmap-container .total-contributions {
|
|
left: 21px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
.heatmap-container .total-contributions {
|
|
font-size: 10px;
|
|
left: 17px;
|
|
bottom: -2px;
|
|
}
|
|
}
|
|
|
|
.heatmap-container text {
|
|
fill: currentColor !important;
|
|
}
|