barua-ui 0.3.2 → 0.3.3
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/css/components/content.css +11 -0
- package/package.json +1 -1
|
@@ -336,6 +336,17 @@
|
|
|
336
336
|
border: 1px solid var(--b-separator);
|
|
337
337
|
border-radius: var(--b-radius-lg);
|
|
338
338
|
}
|
|
339
|
+
|
|
340
|
+
/* A table inside a card must not bring its own frame.
|
|
341
|
+
The wrap carries a border and a smaller radius than the card, so its
|
|
342
|
+
corners cut inside the card's and the surface shows through as a notch —
|
|
343
|
+
the card already provides the edge, and two frames read as a mistake. */
|
|
344
|
+
.b-card > .b-table-wrap {
|
|
345
|
+
border: 0;
|
|
346
|
+
border-radius: 0;
|
|
347
|
+
background: transparent;
|
|
348
|
+
}
|
|
349
|
+
|
|
339
350
|
.b-table {
|
|
340
351
|
width: 100%;
|
|
341
352
|
border-collapse: collapse;
|