Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Окно с выводами вылазит на footer при большой высоте. #1320

Closed
MAGLeb opened this issue Jul 24, 2022 · 2 comments · Fixed by #1440
Closed
Labels
bug Something isn't working good first issue Good for newcomers

Comments

@MAGLeb
Copy link
Contributor

MAGLeb commented Jul 24, 2022

В первую очередь выражаю большую благодарность за существующую платформу!

Картинка и заголовок описывают существующий баг.
image

Чтобы воспроизвести ошибку вставть код ниже в упражнение 3:

#| BEGIN (Введите свое решение) |#
(define (square x)
  (* x x))

(define (solution x y z)
  (cond ((and (x < y) (< x z)) (+ square(z) (square y)))
        ((and (< y x) (< y z)) (+ (square x) (square z)))
        ((and (< z y) (< z x)) (+ (square y) (square x)))
        (else (+ (square x) (square y))))
  )
#| END |#
@fey fey added bug Something isn't working good first issue Good for newcomers labels Jul 24, 2022
@pershin-daniil
Copy link
Contributor

Кажется нашел в чем проблема 🤔
можно просто добавить overflow-auto в div card тогда скрол будет появляться, сейчас попробую оформить PR
(это будте первый PR поэтому могу потупить немного)

@fey
Copy link
Collaborator

fey commented Aug 8, 2022

fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants