From 0b9afe8b595c44d67d781f8d65c51c3495361cfc Mon Sep 17 00:00:00 2001 From: Kerem Yilmaz Date: Wed, 9 Oct 2024 07:43:08 -0700 Subject: [PATCH] Rounded corners for code editor (#940) --- skyvern-frontend/src/index.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/skyvern-frontend/src/index.css b/skyvern-frontend/src/index.css index 9dbd5240..8fe1ec52 100644 --- a/skyvern-frontend/src/index.css +++ b/skyvern-frontend/src/index.css @@ -95,3 +95,13 @@ body, #root { min-height: 100vh; } + +/* CodeMirror override styles */ + +.cm-editor { + @apply rounded-md; +} + +.cm-gutters { + @apply rounded-md; +}