gitcoinco/code_fund_ads

View on GitHub
app/javascript/controllers/auto_height_controller.js

Summary

Maintainability
A
0 mins
Test Coverage
// Used to make sure `PageComponent` is the full height of the browser
// and takes zoom percentage in to account.
import { Controller } from 'stimulus'

export default class extends Controller {
  connect () {
    this.element.style.minHeight = `${window.innerHeight}px`
  }
}