Sha256: 13a217c329e47316f91a6886e5015920d96529bb8a35e59a6d7a91f9f9961bfe

Contents?: true

Size: 1.21 KB

Versions: 5

Compression:

Stored size: 1.21 KB

Contents

.log {
	grid-template-rows: max-content 1fr max-content;
	max-height: 100vh;
	display: flex;
	flex-direction: column;
	@include breakpoint(md) {
		box-shadow: 0px 0px .2rem black;
		margin: 2vh 2vw;
		max-height: 96vh;
	}
	@include breakpoint(lg) {
		margin: 5vh 3vw;
		max-height: 90vh;
		max-width: 94vw;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: space-between;
	}
	@include breakpoint(xl) {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
	}
	
	> * {
		width: 100%;
		max-height: 100%;
	}
	> main {
		flex-grow: 1;
		height: calc(100% - 3rem);
	}
	> header {
	}
	> footer {
	}
	@include breakpoint(md) {
	}
	@include breakpoint(lg) {
		> header, > footer {
			order: 1;
			width: 40%;
		}
		> main {
			order: 2;
			width: 60%;
			height: 90vh;
			max-height: 90vh;
			padding-bottom: 0px;
		}
		> header {
			height: calc(90vh - 3.6rem);
		}
		> footer {
		}
	}
	@include breakpoint(xl) {
		> * {
			flex-grow: 1;
			max-height: 90vh;
			overflow: scroll;
		}
		> main {
			width: 58%;
		}
		> header {
			height: auto;
			width: 24%;
		}
		> footer {
			width: 18%;
			order: 3;
		}
	}
	
	> main {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		box-sizing: border-box;
	}
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ilog-0.3.1 src/sass/log/grid.scss
ilog-0.3.0 src/sass/log/grid.scss
ilog-0.2.2 src/sass/log/grid.scss
ilog-0.2.1 src/sass/log/grid.scss
ilog-0.2.0 src/sass/log/grid.scss