File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed
LinkDotNet.Blog.Web/Shared Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 5
5
display : grid;
6
6
grid-template-columns : 1.5fr 1fr 1fr 1fr 1fr 1fr ;
7
7
grid-template-rows : 1fr 1fr 1fr ;
8
- gap : 0 px 0 px ;
8
+ gap : 10 px ;
9
9
grid-template-areas : ". . . . . ." ". profile-picture profile-text profile-text profile-text ." ". . . . . ." ;
10
10
}
11
11
27
27
font-size : 125% ;
28
28
color : white;
29
29
line-height : 24px ;
30
+ }
31
+
32
+ @media only screen and (max-width : 700px ) {
33
+ .introduction-container {
34
+ grid-template-areas :
35
+ ". . profile-picture profile-picture . ."
36
+ ". profile-text profile-text profile-text profile-text ."
37
+ ". profile-text profile-text profile-text profile-text ." ;
38
+ }
39
+
40
+ .introduction-container .profile-text {
41
+ font-size : 100% ;
42
+ color : white;
43
+ line-height : 20px ;
44
+ text-overflow : ellipsis;
45
+ }
46
+
47
+ .introduction-container .profile-picture {
48
+ margin-top : 10px ;
49
+ }
30
50
}
You can’t perform that action at this time.
0 commit comments