Browse Source

fix:消毒页面,所选配方名称过长的话折行显示

master
白凤吉 2 weeks ago
parent
commit
04d75e7731
  1. 8
      src/components/home/HomeFormula.vue

8
src/components/home/HomeFormula.vue

@ -39,11 +39,17 @@ watchEffect(() => {
font-size: 1.5rem;
.title-formula{
display: flex;
justify-self: start;
align-items: center;
gap: 5px;
padding: 10px;
font-size: 1.5rem;
flex-wrap: nowrap;
}
.title-formula{
flex: 1 1 auto;
min-width: 0;
white-space: normal;
word-break: break-word;
}
.title-spend{
justify-self: end;

Loading…
Cancel
Save