X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-instance%2Finstance-features-table.component.scss;h=bfae0c112f6b3daacd2d298e46f70cc86c112bda;hb=4c8a099198cd3af049847df91140735354b85a92;hp=c8609a4c0362a00b40b3d96bc4011ebb4e240ad3;hpb=27bc95867442c772841fb183a625bbda61dede51;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-instance/instance-features-table.component.scss b/client/src/app/shared/shared-instance/instance-features-table.component.scss index c8609a4c0..bfae0c112 100644 --- a/client/src/app/shared/shared-instance/instance-features-table.component.scss +++ b/client/src/app/shared/shared-instance/instance-features-table.component.scss @@ -1,9 +1,10 @@ -@import '_variables'; -@import '_mixins'; +@use '_variables' as *; +@use '_mixins' as *; table { font-size: 14px; color: pvar(--mainForegroundColor); + width: 100%; .label, .sub-label { @@ -24,16 +25,22 @@ table { } } + th, td { - vertical-align: middle; + padding: 0.75rem; + border-top: 1px solid #dee2e6; } caption { caption-side: top; - font-size: 15px; font-weight: $font-semibold; color: pvar(--mainForegroundColor); } -} - + .plugin, + .theme { + &:not(:last-child)::after { + content: '•'; + } + } +}