Skip to content

css for .content should be different #355

@xAlien95

Description

@xAlien95

Hi, the actual css for .content class in _scaffolding.scss#L58 is:

.content {
  position: absolute;
  width: 100%;
  height: 100%;
}

Its height should be the window one less the header one, so:

.content {
  position: absolute;
  width: 100%;
  top: 0; /* to prevent errors when has-header isn't set */
  bottom: 0;
}

Thanks :)

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions