We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02eac43 commit 35aa8aeCopy full SHA for 35aa8ae
visualpython/css/root.css
@@ -564,6 +564,14 @@ hr.vp-extra-menu-line {
564
.vp-inline-block {
565
display: inline-block !important;
566
}
567
+/* Flex */
568
+.vp-flex-box {
569
+ display: flex;
570
+}
571
+.vp-flex-gap5 {
572
573
+ gap: 5px;
574
575
/* Grid style */
576
.vp-grid-box {
577
display: grid;
@@ -614,6 +622,13 @@ hr.vp-extra-menu-line {
614
622
align-items: baseline;
615
623
align-content: space-evenly;
616
624
625
+.vp-grid-col-160 {
626
+ display: grid;
627
+ grid-template-columns: 160px auto;
628
+ grid-row-gap: 5px;
629
+ align-items: baseline;
630
+ align-content: space-evenly;
631
617
632
/* Table style */
618
633
.vp-tbl-gap5 {
619
634
border-spacing: 5px;
0 commit comments