forked from mattermost/mattermost-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstory_box.scss
40 lines (35 loc) · 843 Bytes
/
story_box.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
.StoryGrid .StoryBox {
display: grid;
place-items: center;
}
.StoryBox {
position: relative;
min-width: 250px;
padding: 30px;
border: 1px solid #eee;
margin: 30px 10px 10px;
border-radius: 5px;
.StoryBox___label {
position: absolute;
top: -23px;
left: 0;
padding: 0 5px;
background: whitesmoke;
border-radius: 5px;
font-weight: bold;
}
.StoryBox {
display: inline-grid;
min-width: 200px;
padding: 10px;
margin: 20px 10px 15px;
.StoryBox___label {
top: -25px;
padding: 0 3px 2px;
border-radius: 3px;
font-weight: normal;
}
}
}