Files
frontend-app-learning/src/courseware/course/content-tools/contentTools.scss
2023-04-26 13:42:16 +05:00

27 lines
559 B
SCSS

.content-tools {
position: fixed;
right: 0;
bottom: 0;
z-index: 100;
.trigger {
cursor: pointer;
display: inline-block;
position: relative;
z-index: 2;
background-color: #f1f1f1;
border: solid 1px #ddd;
border-bottom: none;
border-top-left-radius: .3rem;
border-top-right-radius: .3rem;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
text-overflow: ellipsis;
overflow: hidden;
padding-left: .75rem;
white-space: nowrap;
&:before {
border-radius: .5rem;
}
}
}