mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-29 02:29:50 -04:00

* apparently, if you do an ngFor on the result of function call that returns a new array each time its called, it will screw up the template watching code such that every action will necessitate a rerendering of the information even if it hasn't changed.
38 lines
652 B
SCSS
38 lines
652 B
SCSS
verse-picker {
|
|
|
|
.button {
|
|
color: #fff;
|
|
font-size: 1em;
|
|
float: left;
|
|
padding: .5em;
|
|
background-color: #1c2e4c;
|
|
margin: .3em;
|
|
text-align: center;
|
|
width: 95px;
|
|
}
|
|
|
|
.backbutton {
|
|
width: 100%;
|
|
font-family: inherit;
|
|
text-transform: inherit;
|
|
}
|
|
|
|
.backbutton:hover:not(.disable-hover) {
|
|
background-color: #2b4166;
|
|
}
|
|
|
|
ion-content {
|
|
div, h3 {
|
|
clear: both;
|
|
}
|
|
|
|
div {
|
|
margin: 1em;
|
|
}
|
|
|
|
h3 {
|
|
padding-top: .5em;
|
|
}
|
|
}
|
|
}
|