getting-started.module.scss 584 B

123456789101112131415161718192021222324252627282930
  1. // A quick and dirty hack to keep the tab panel with less content to have the same height as others
  2. div > div {
  3. > div > div > div > div, .textBlock {
  4. .buildUrho3D + & {
  5. min-height: 164px;
  6. }
  7. .buildUrhoApp + & {
  8. min-height: 142px;
  9. }
  10. .requirements + & {
  11. min-height: 340px;
  12. }
  13. }
  14. }
  15. .textBlock {
  16. overflow: auto;
  17. border-radius: var(--ifm-global-radius);
  18. color: rgb(191, 199, 213);
  19. background-color: rgb(41, 45, 62);
  20. margin-bottom: var(--ifm-leading);
  21. padding: var(--ifm-pre-padding);
  22. min-width: 100%;
  23. p {
  24. margin: 0;
  25. }
  26. }