chore: remove deprecations following tailwind update

This commit is contained in:
Brice Maron 2022-09-08 08:24:17 +02:00
parent 99a12a040b
commit 1d80b0436c
5 changed files with 340 additions and 249 deletions

View file

@ -29,7 +29,7 @@ export class SubtleButton extends UIElement {
protected InnerRender(): string | BaseUIElement {
const classes = "block flex p-3 my-2 bg-subtle rounded-lg hover:shadow-xl hover:bg-unsubtle transition-colors transition-shadow link-no-underline";
const message = Translations.W(this.message)?.SetClass("block overflow-ellipsis no-images flex-shrink");
const message = Translations.W(this.message)?.SetClass("block text-ellipsis no-images flex-shrink");
let img;
const imgClasses = "block justify-center flex-none mr-4 " + (this.options?.imgSize ?? "h-11 w-11")
if ((this.imageUrl ?? "") === "") {