Compare commits

...

2 commits

Author SHA1 Message Date
a26ecf3099 bubblemenu: no ocupar espacio cuando no se usa
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2023-04-18 15:20:51 -03:00
85b8f6fa4a limitar tamaño links 2023-04-18 15:20:01 -03:00
2 changed files with 7 additions and 1 deletions

View file

@ -200,12 +200,14 @@ transform: scale(${1 / viewport.scale});
visibility: visible; visibility: visible;
opacity: 1; opacity: 1;
height: auto;
transition: opacity 0.2s, visibility 0.2s; transition: opacity 0.2s, visibility 0.2s, height 0.2s;
} }
.bubble[hidden] { .bubble[hidden] {
visibility: hidden; visibility: hidden;
opacity: 0; opacity: 0;
height: 0;
} }
.bubble input { .bubble input {

View file

@ -99,5 +99,9 @@
display: block; display: block;
text-decoration: none; text-decoration: none;
line-height: 1; line-height: 1;
text-overflow: ellipsis;
overflow: hidden;
max-width: 40vw;
white-space: nowrap;
} }
</style> </style>