jclarke0000 / MMM-MyCalendar

Alternative calendar module for MagicMirror.
57 stars 17 forks source link

How can I align the time to the right of the table? #27

Closed yaydogan closed 4 years ago

yaydogan commented 4 years ago

I changed CSS config to show the title and the time in one line. I would like to have the time right aligned. I changed the text-align to right but it didn't change anything.

Any ideas how I can do this?

.MMM-MyCalendar .time, .MMM-MyCalendar .location { color: #AAA; white-space: nowrap; display: inline;
font-size: 17px; line-height: 1.5; text-align: right; vertical-align: top; padding-left: 0; margin-bottom: 2px; font-weight: 400; overflow: hidden; text-overflow: ellipsis; }

yaydogan commented 4 years ago

I replaced "text-align: right" with "float: right" and the last span is right aligned.