Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
.mt-content-row {
2
	display: table;
3
	height: 100%;
4
	width: 100%;
5
 
6
	.mt-content-col-fluid {
7
		display: table-cell;
8
 
9
		.mt-content-body {
10
			margin: 0;
11
			height: 100%;
12
			width: 100%;
13
			display: table;
14
		}
15
	}
16
 
17
	.mt-content-col-fixed {
18
		display: table-cell;
19
 
20
		.mt-content-sidebar {
21
			height: 100%;
22
			width: 100%;
23
			display: table;
24
			margin-left: 20px;
25
			border: 1px solid red;
26
		}
27
	}
28
}
29
 
30
@media (max-width: $screen-xs-max) { /* 767px */
31
	.mt-content-row {
32
		display: block;
33
		width: 100%;
34
 
35
		.mt-content-col-fluid {
36
			display: block;
37
			width: 100%;
38
			margin-bottom: 20px;
39
 
40
			.mt-content-body {
41
				margin: 0;
42
			}
43
		}
44
 
45
		.mt-content-col-fixed {
46
			display: block;
47
			width: 100%;
48
 
49
			.mt-content-sidebar {
50
				margin-left: 0;
51
			}
52
		}
53
	}
54
}