@policystudio/policy-studio-ui-vue 1.1.69 → 1.1.70

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.
@@ -24520,6 +24520,25 @@ html {
24520
24520
  transition-duration: 150ms;
24521
24521
  }
24522
24522
 
24523
+ .tooltip.layout-blue .tooltip-inner {
24524
+ background: #00465F;
24525
+ font-weight: 700;
24526
+ color: #ffffff;
24527
+ padding: 10px 16px 12px 16px;
24528
+ border-radius: 6px;
24529
+ font-size: 12px;
24530
+ line-height: 130%;
24531
+ }
24532
+
24533
+ .tooltip.layout-gray-50 .tooltip-inner {
24534
+ background: #798490;
24535
+ padding: 4px 8px;
24536
+ border-radius: 4px;
24537
+ font-size: 12px;
24538
+ line-height: 130%;
24539
+ letter-spacing: 1px;
24540
+ }
24541
+
24523
24542
  @media (min-width: 640px){
24524
24543
  .sm\:psui-container{
24525
24544
  width: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.69",
3
+ "version": "1.1.70",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -98,4 +98,28 @@ html {
98
98
 
99
99
  .psui-transition {
100
100
  @apply psui-transition-all psui-ease-in-out psui-duration-150;
101
+ }
102
+
103
+
104
+ .tooltip.layout-blue {
105
+ .tooltip-inner {
106
+ background: #00465F;
107
+ font-weight: 700;
108
+ color: #ffffff;
109
+ padding: 10px 16px 12px 16px;
110
+ border-radius: 6px;
111
+ font-size: 12px;
112
+ line-height: 130%;
113
+ }
114
+ }
115
+
116
+ .tooltip.layout-gray-50 {
117
+ .tooltip-inner {
118
+ background: #798490;
119
+ padding: 4px 8px;
120
+ border-radius: 4px;
121
+ font-size: 12px;
122
+ line-height: 130%;
123
+ letter-spacing: 1px;
124
+ }
101
125
  }