-
Notifications
You must be signed in to change notification settings - Fork 32
/
style-ec.scss
29 lines (29 loc) · 938 Bytes
/
style-ec.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@use "sass:map";
@use '@ecl/theme-ec';
@use '@ecl/theme-ec/theme';
@use '@ecl/vanilla-layout-grid/mixins/breakpoints' with (
$theme: theme.$theme
);
@use '@ecl/vanilla-utility-background/background' with (
$theme: theme.$theme
);
@use '@ecl/vanilla-utility-border/border' with (
$theme: theme.$theme
);
// TODO: The help form component is not available on ECL v3.
//@use '@ecl/ec-component-form-help-block/ec-component-form-help-block';
@use "./compositions/content_item" with (
$color: var(--ecl-color-dark-100),
);
@use "./components/form";
@use "./components/toolbar";
@use "./components/wysiwyg";
@use "./components/global" with (
$font-family: map.get(theme.$theme, 'font-family', 'default'),
);
@use "./components/description_list";
@use "./components/media_iframe";
@use "./components/contextual_navigation" with (
$font-family: map.get(theme.$theme, 'font-family', 'default'),
);
@use "./components/navigation_list";