getting-started.module.scss 661 B

123456789101112131415161718192021222324252627282930313233
  1. // A quick and dirty hack to keep the tab panel with less content to have the same height as others
  2. div {
  3. > div > div > div > div > div, .fixedHeight {
  4. .dbeInstall + & {
  5. min-height: 120px;
  6. }
  7. .dbeBuildUrhoApp + & {
  8. min-height: 142px;
  9. }
  10. .requirements + & {
  11. min-height: 340px;
  12. }
  13. .cliInstall + &, .cliUrhoApp + & {
  14. min-height: 208px;
  15. }
  16. .ideInstall + & {
  17. min-height: 412px;
  18. }
  19. .ideUrhoApp + & {
  20. min-height: 356px;
  21. }
  22. }
  23. }
  24. // As the info content may be changed in the future, adjust the minimum height here to prevent jumping elements
  25. .infoFixedHeight {
  26. min-height: 86px;
  27. }