1234567891011121314151617181920212223 |
- .right-grid{
- grid-template-columns: repeat(3,1fr);
- grid-template-rows: repeat(3,1fr);
- }
- .video-box-wrapper{
- width:100%;
- height:100%;
- display:flex;
- align-items:center;
- }
- .video-tab{
- width:100%;
- height:100%;
- display:flex;
- justify-content:start;
- align-items:center;
- font-size:1.2em;
- }
- .video-tab>.tune-name{
-
- margin-right:.7em;
- }
|