-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path_page-title.scss
More file actions
36 lines (31 loc) · 847 Bytes
/
_page-title.scss
File metadata and controls
36 lines (31 loc) · 847 Bytes
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
@use '@ibexa-admin-ui/src/bundle/Resources/public/scss/custom.scss' as *;
@use '@ibexa-admin-ui/src/bundle/Resources/public/scss/functions/calculate.rem' as *;
.ibexa-page-title {
&__top {
display: grid;
grid-template-columns: auto 1fr;
}
&__content-name {
font-weight: normal;
font-size: calculateRem(26px);
width: calc(100% - #{calculateRem(36px)});
margin-bottom: calculateRem(16px);
}
&__title {
display: flex;
align-items: center;
overflow: hidden;
}
&__content {
display: inline-block;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ibexa-badge,
.ids-tag {
margin-left: calculateRem(16px);
font-family: $ibexa-font-family;
}
}