From f6f417617cad7aa989d18387e8eaf334f8749b6d Mon Sep 17 00:00:00 2001 From: mhmo91 Date: Thu, 3 Oct 2024 16:54:01 +0200 Subject: [PATCH] . --- package.json | 2 +- src/surface/surface.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4a70410..e1e90b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mhmo91/schmancy", - "version": "0.0.259", + "version": "0.0.260", "description": "UI library build with web components", "main": "./dist/index.js", "repository": { diff --git a/src/surface/surface.ts b/src/surface/surface.ts index eb0cd4d..fa12f1f 100644 --- a/src/surface/surface.ts +++ b/src/surface/surface.ts @@ -43,7 +43,7 @@ export class SchmancySurface extends TailwindElement(css` 'rounded-b-[8px]': this.rounded === 'bottom', 'rounded-[8px]': this.rounded === 'all', - 'w-full h-full overflow-auto': this.fill, + 'w-full h-full': this.fill, 'shadow-1': this.elevation === 1, 'shadow-2': this.elevation === 2, 'shadow-3': this.elevation === 3,