@salesforcedevs/docs-components 1.26.0-alpha → 1.26.0-content
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/package.json
CHANGED
|
@@ -1,35 +1 @@
|
|
|
1
1
|
@import "docHelpers/contentLayoutStyle";
|
|
2
|
-
|
|
3
|
-
/* New Theme Test Styles */
|
|
4
|
-
@keyframes scroll-text {
|
|
5
|
-
0% {
|
|
6
|
-
transform: translateX(100%);
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
100% {
|
|
10
|
-
transform: translateX(-100%);
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.new-theme-test {
|
|
15
|
-
background: linear-gradient(135deg, #d4cd00 0%, #83d400 50%, #19a700 100%);
|
|
16
|
-
color: white;
|
|
17
|
-
padding: 12px 24px;
|
|
18
|
-
margin: 0 var(--dx-g-global-header-padding-horizontal, 24px);
|
|
19
|
-
margin-top: var(--dx-g-spacing-md, 16px);
|
|
20
|
-
font-weight: 600;
|
|
21
|
-
font-size: 16px;
|
|
22
|
-
box-shadow: 0 4px 12px rgb(4 212 0 / 30%);
|
|
23
|
-
overflow: hidden;
|
|
24
|
-
white-space: nowrap;
|
|
25
|
-
border-radius: 8px;
|
|
26
|
-
text-align: center;
|
|
27
|
-
max-width: var(--dx-g-doc-content-max-width);
|
|
28
|
-
margin-left: auto;
|
|
29
|
-
margin-right: auto;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.new-theme-banner span {
|
|
33
|
-
display: inline-block;
|
|
34
|
-
animation: scroll-text 10s linear infinite;
|
|
35
|
-
}
|
|
@@ -23,11 +23,6 @@
|
|
|
23
23
|
<div class="version-wrapper">
|
|
24
24
|
<slot name="version-banner"></slot>
|
|
25
25
|
</div>
|
|
26
|
-
<div class="new-theme-test">
|
|
27
|
-
<span>
|
|
28
|
-
✨ SFDocs is Awesome 🥰 New Theme Update inside Component!!
|
|
29
|
-
</span>
|
|
30
|
-
</div>
|
|
31
26
|
<div class="content-body-container">
|
|
32
27
|
<div class="content-body">
|
|
33
28
|
<doc-breadcrumbs
|