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=11cf1161642e63d3d540a51ba9d124eb742a72be;hpb=931d3430184143ebd88e5243def6eb1d7acfdbf4;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 11cf11616..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 { @@ -12,8 +13,9 @@ table { } &.sub-label { + @include padding-left(30px); + font-weight: $font-regular; - padding-left: 30px; } .more-info { @@ -23,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: '•'; + } + } +}