getting-started.module.scss 590 B

1234567891011121314151617181920212223242526272829
  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: 164px;
  6. }
  7. .dbeBuildUrhoApp + & {
  8. min-height: 142px;
  9. }
  10. .requirements + & {
  11. min-height: 340px;
  12. }
  13. .cliInstall + & {
  14. min-height: 208px;
  15. }
  16. .ideInstall + & {
  17. min-height: 332px;
  18. }
  19. }
  20. }
  21. // As the info content may be changed in the future, adjust the minimum height here to prevent jumping elements
  22. .infoFixedHeight {
  23. min-height: 86px;
  24. }