1
0
mirror of https://github.com/minio/docs.git synced 2025-04-18 10:04:02 +03:00

Fix table white-space behavior (#1450)

Fixes https://github.com/minio/docs/issues/1449

**Fix:**

![Screenshot 2025-04-09 at 1 10
18 PM](https://github.com/user-attachments/assets/fad45b2d-60d2-4997-aeb5-613619383e23)
This commit is contained in:
Rushan 2025-04-09 20:10:28 +05:30 committed by GitHub
parent 01c32ace46
commit 15a5c34a2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -289,15 +289,19 @@ table.docutils {
border-bottom-width: 0;
}
}
}
td, th {
&:first-child {
border-left-width: 0;
}
td, th {
&:first-child {
border-left-width: 0;
}
&:last-child {
border-right-width: 0;
}
&:last-child {
border-right-width: 0;
}
* {
white-space: normal;
}
}
}