-
Notifications
You must be signed in to change notification settings - Fork 31
/
style-eu.scss
32 lines (32 loc) · 1.05 KB
/
style-eu.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
30
31
32
@use "sass:map";
@use '@ecl/theme-eu';
@use '@ecl/theme-eu/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/eu-component-form-help-block/eu-component-form-help-block';
@use "./compositions/content_item";
@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" with (
$background-color: var(--ecl-color-primary-5),
$border-color: var(--ecl-color-primary-10),
);
@use "./components/media_iframe";
@use "./components/contextual_navigation" with (
$outline-width: 2px,
$border_right: 1px solid var(--ecl-color-dark-60),
$font-family: map.get(theme.$theme, 'font-family', 'default'),
);
@use "./components/navigation_list";