ode-csslib 4.0.13-dev.202306161138 → 4.0.13-dev.202306271611

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/version.txt CHANGED
@@ -1 +1 @@
1
- entcore-css-lib=4.0-dev-SNAPSHOT 16/06/2023 11:39:00
1
+ entcore-css-lib=4.0-dev-SNAPSHOT 27/06/2023 16:11:49
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ode-csslib",
3
- "version": "4.0.13-dev.202306161138",
3
+ "version": "4.0.13-dev.202306271611",
4
4
  "description": "Open Digital Education Legacy CSS framework",
5
5
  "scripts": {
6
6
  "copy-fonts": "cpr node_modules/entcore-generic-icons/fonts/ assets/fonts/generic-icons/ -o",
@@ -104,3 +104,4 @@
104
104
  @import "wizard";
105
105
  @import "nouislider";
106
106
  @import "onboarding";
107
+ @import "pastilles";
@@ -0,0 +1,32 @@
1
+ .pastilles-container {
2
+ display: flex;
3
+ padding: 24px;
4
+ gap: 4px;
5
+ }
6
+
7
+ .pastilles-item {
8
+ flex: 1;
9
+ display: flex;
10
+ flex-direction: column;
11
+ align-items: center;
12
+ color: $text-light;
13
+
14
+ span {
15
+ font-size: 14px;
16
+ line-height: 22px;
17
+ padding: 4px 0;
18
+ border-bottom: solid 1px transparent;
19
+ transition: border-bottom-color 250ms ease;
20
+ }
21
+
22
+ &.active {
23
+ color: $primary;
24
+ font-weight: 600;
25
+
26
+ span {
27
+ border-bottom: solid 1px;
28
+ border-bottom-color: $primary;
29
+ }
30
+ }
31
+
32
+ }