From 6c3f236db01fffe312ab88ee9d02622195681ad2 Mon Sep 17 00:00:00 2001 From: Dominik Broj Date: Tue, 5 Dec 2023 11:23:35 +0100 Subject: [PATCH] add borders to editors (#3490) # What this PR does add missing borders to template editors ## Which issue(s) this PR fixes https://github.com/grafana/oncall/issues/3463 ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required) --- .../IntegrationTemplate/IntegrationTemplate.module.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/grafana-plugin/src/containers/IntegrationTemplate/IntegrationTemplate.module.scss b/grafana-plugin/src/containers/IntegrationTemplate/IntegrationTemplate.module.scss index 8bcab258..8aab1d4c 100644 --- a/grafana-plugin/src/containers/IntegrationTemplate/IntegrationTemplate.module.scss +++ b/grafana-plugin/src/containers/IntegrationTemplate/IntegrationTemplate.module.scss @@ -67,5 +67,7 @@ } .template-editor-block-content { - height: calc(100% - 60px); + height: calc(100% - 57px); + border-left: var(--border-weak); + border-right: var(--border-weak); }