otimus-library 0.4.76 → 0.4.78

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,6 +1,6 @@
1
1
  {
2
2
  "name": "otimus-library",
3
- "version": "0.4.76",
3
+ "version": "0.4.78",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "^20.2.5",
@@ -74,20 +74,26 @@
74
74
  }
75
75
 
76
76
  .oc.table.rounded {
77
- thead tr:first-child th:first-child {
78
- border-top-left-radius: 10px;
77
+ td {
78
+ border-radius: 0px;
79
79
  }
80
80
 
81
- thead tr:first-child th:last-child {
82
- border-top-right-radius: 10px;
81
+ th:first-child {
82
+ border-radius: 10px 0 0 0;
83
83
  }
84
84
 
85
- tbody tr:last-child td:first-child {
86
- border-bottom-left-radius: 10px;
85
+ th:last-child {
86
+ border-radius: 0 10px 0 0;
87
87
  }
88
88
 
89
- tbody tr:last-child td:last-child {
90
- border-bottom-right-radius: 10px;
89
+ tbody tr:last-child {
90
+ td:last-child {
91
+ border-radius: 0 0 10px 0;
92
+ }
93
+
94
+ td:first-child {
95
+ border-radius: 0 0 0 10px;
96
+ }
91
97
  }
92
98
  }
93
99