Skip to content

Commit

Permalink
Needs More Recent Pull
Browse files Browse the repository at this point in the history
  • Loading branch information
davidagnome committed Sep 15, 2022
1 parent c5b3a74 commit ee0ba94
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 30 deletions.
29 changes: 17 additions & 12 deletions css/child-theme.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/child-theme.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/child-theme.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/child-theme.min.css.map

Large diffs are not rendered by default.

59 changes: 44 additions & 15 deletions src/sass/theme/_child_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,33 +53,62 @@
border-bottom: 1px solid #000;
}

.actionnetwork-calendar-item > a {
display: flex;
.actionnetwork-calendar-item {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-align-content: stretch;
-ms-flex-line-pack: stretch;
align-content: stretch;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
}

.actionnetwork-calendar-date {
flex: 1 auto;
flex-grow: 1;
}

.actionnetwork-calendar-title {
flex: 1 auto;
flex-grow: 2;
}

.actionnetwork-calendar-dateMonth {
text-align: center;
-webkit-order: 0;
-ms-flex-order: 0;
order: 0;
-webkit-flex: 1 1 33%;
-ms-flex: 1 1 33%;
flex: 1 1 33%;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
}

.actionnetwork-calendar-details {
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
-webkit-flex: 2 2 66%;
-ms-flex: 2 2 66%;
flex: 2 2 66%;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
align-items: center;
}

.actionnetwork-calendar-dateNumber {
font-weight: bold;
text-align: center;
font-size: 2rem;
}

.actionnetwork-calendar-dateName {
.actionnetwork-calendar-dateNameMonth {
text-align: center;
}

.actionnetwork-calendar-dateStarTime {
.actionnetwork-calendar-dateStartTime {
text-align: center;
}

0 comments on commit ee0ba94

Please sign in to comment.