Skip to content

Commit 1f6b7e2

Browse files
author
Tanner Reits
committed
fix: build & misc feedback
1 parent ff08d39 commit 1f6b7e2

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

core/src/components/modal/modal.common.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55

66
:host {
77
/**
8+
* @prop --background: Background of the modal content
9+
*
810
* @prop --border-color: Border color of the modal content
11+
* @prop --border-radius: Border radius of the modal content
912
* @prop --border-width: Border width of the modal content
1013
* @prop --border-style: Border style of the modal content
1114
*
@@ -16,6 +19,8 @@
1619
* @prop --min-height: Minimum height of the modal
1720
* @prop --height: Height of the modal
1821
* @prop --max-height: Maximum height of the modal
22+
*
23+
* @prop --backdrop-opacity: Opacity of the backdrop
1924
*/
2025
--width: 100%;
2126
--min-width: auto;

core/src/components/modal/modal.native.scss

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
1-
@use "./datetime.common";
2-
@import "./modal.native.vars";
1+
@use "./modal.common";
2+
@import "./modal.vars";
33

44
// Modals: Native Styles
55
// --------------------------------------------------
66

77
:host {
8-
/**
9-
* @prop --background: Background of the modal content
10-
*
11-
* @prop --border-radius: Border radius of the modal content
12-
*
13-
* @prop --backdrop-opacity: Opacity of the backdrop
14-
*/
158
--background: #{$background-color};
169
--border-radius: 0;
1710
--backdrop-opacity: 0;

0 commit comments

Comments
 (0)