Fixed squishy color bubble (#358)
Fixed squishy color bubble The bubble was getting squished on smaller screens because of flex-shrink. Changed flex-shrink to 0. Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/358 Reviewed-by: konrad <konrad@kola-entertainments.de> Co-Authored-By: profi248 <kostal.david8@gmail.com> Co-Committed-By: profi248 <kostal.david8@gmail.com>
This commit is contained in:
parent
2cf1163c0a
commit
36d62d796c
2 changed files with 2 additions and 2 deletions
|
@ -54,8 +54,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.color-bubble {
|
.color-bubble {
|
||||||
width: 11px;
|
|
||||||
height: 10px;
|
height: 10px;
|
||||||
|
flex: 1 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
|
|
|
@ -163,8 +163,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.color-bubble {
|
.color-bubble {
|
||||||
width: 14px; // Without this, the bubble is only 10.2342357612px wide and seems squashed.
|
|
||||||
height: 12px;
|
height: 12px;
|
||||||
|
flex: 1 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.favorite {
|
.favorite {
|
||||||
|
|
Loading…
Reference in a new issue