ClosedReason - Add base div, add CSS with differential highlighting

This commit is contained in:
2018-03-12 02:08:09 +05:30
parent c0a480edbb
commit f91f9e1f80
2 changed files with 10 additions and 1 deletions
@@ -0,0 +1,8 @@
.holidayPrefixText {
font-size: 0.6em;
color: rgba(255, 255, 255, 0.75);
}
.holidayName {
color: rgba(255, 255, 255, 1);
}
+2 -1
View File
@@ -1,5 +1,6 @@
import * as React from 'react'; import * as React from 'react';
import { Holiday } from '../../Data/index'; import { Holiday } from '../../Data/index';
import './Component.css';
type ObjectWithHoliday = { holiday: Holiday }; type ObjectWithHoliday = { holiday: Holiday };
@@ -13,7 +14,7 @@ export class ClosedReason extends React.Component<ObjectWithHoliday, {}> {
render() { render() {
return ( return (
<div className="answerReason"> <div className="ClosedReason">
<div className="holidayPrefixText"> <div className="holidayPrefixText">
Closed due to Closed due to
</div> </div>