Skip to content

Commit

Permalink
Merge pull request #677 from classtranscribe/alignmentOfButtons
Browse files Browse the repository at this point in the history
Alignment of buttons
  • Loading branch information
angrave authored Sep 27, 2023
2 parents 7daddf8 + 68d697d commit cd6d86b
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions src/screens/EPub/views/EditINote/INoteEditor/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
// INoteChapter
.ct-epb.ch-img-con {
position: relative;
width: 100%;
width: 98%;
height: 98%;
margin-left: 3px;
padding-top: 3px;
flex: 0 0 auto;
padding-bottom: 20px;
padding-bottom: 5px;
margin-top: 10px;
border-top: solid 1px rgb(236, 236, 236);
.ch-img-wrapper{
position: relative;
Expand All @@ -28,9 +32,11 @@

.item-text {
position: relative;
width: 99%;
white-space: pre-wrap;
padding-left: 10px;
padding-top: 10px;
margin-left: 3px;
padding-top: 3px;
margin-bottom: 3px;
font-size: 14px;
line-height: 23px;
// height: 92px;
Expand All @@ -39,13 +45,17 @@


.item-actions {
display: flex;
justify-content: flex-start;
gap: 50px;
width: 100%;
opacity: 0;
transition: opacity .2s ease-in;
pointer-events: auto;
border-radius: 0 20px 20px 0;
padding-left: 20px;
border-radius: 10px 20px 20px 10px;
background-color: rgb(245, 245, 245);
margin-bottom: 5px;
margin-top: 5px;
}
.item-actions:hover {
opacity: 1;
Expand Down

0 comments on commit cd6d86b

Please sign in to comment.