mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			956 B
		
	
	
	
		
			Sass
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			956 B
		
	
	
	
		
			Sass
		
	
	
	
	
	
//- 💫 CSS > BASE > GRID
 | 
						|
 | 
						|
//- Grid container
 | 
						|
 | 
						|
.o-grid
 | 
						|
    display: flex
 | 
						|
    flex-wrap: wrap
 | 
						|
 | 
						|
    @include breakpoint(min, sm)
 | 
						|
        flex-direction: row
 | 
						|
        align-items: stretch
 | 
						|
        justify-content: space-between
 | 
						|
 | 
						|
    &.o-grid--center
 | 
						|
        align-items: center
 | 
						|
        justify-content: center
 | 
						|
 | 
						|
 | 
						|
//- Grid column
 | 
						|
 | 
						|
.o-grid__col
 | 
						|
    $grid-gutter: 2rem
 | 
						|
 | 
						|
    margin-top: $grid-gutter
 | 
						|
    overflow: hidden
 | 
						|
 | 
						|
    @include breakpoint(min, lg)
 | 
						|
        display: flex
 | 
						|
        flex: 0 0 100%
 | 
						|
        flex-direction: column
 | 
						|
        flex-wrap: wrap
 | 
						|
 | 
						|
        @each $mode, $count in $grid
 | 
						|
            &.o-grid__col--#{$mode}
 | 
						|
                $percentage: calc(#{100% / $count} - #{$grid-gutter})
 | 
						|
                flex: 0 0 $percentage
 | 
						|
                max-width: $percentage
 | 
						|
 | 
						|
    @include breakpoint(max, md)
 | 
						|
        flex: 0 0 100%
 | 
						|
        flex-flow: column wrap
 | 
						|
 | 
						|
    // Fix overflow issue in old browsers
 | 
						|
 | 
						|
    & > *
 | 
						|
        flex-shrink: 1
 | 
						|
        max-width: 100%
 |