Skip to content

Instantly share code, notes, and snippets.

View howardrapp's full-sized avatar

Howard Rapp howardrapp

View GitHub Profile
@howardrapp
howardrapp / custom-logo-size.css
Last active October 10, 2020 12:05
Custom Logo Size
.custom-logo {
width: auto;
height: 32px !important;
}
@howardrapp
howardrapp / chat-size-height.css
Created October 10, 2020 12:11
Chat Window Size and Height
/*chat window size*/ .ps-chat-window-open .ps-chat-window-box { height: 540px; width: 330px}
.ps-chat-window-content { height: 370px; }
@howardrapp
howardrapp / eliminate-video-description.css
Created October 10, 2020 12:14
Eliminate Video Description
.ps-media-body.video-description{display:none;}
@howardrapp
howardrapp / bold-profile-title.css
Created October 10, 2020 12:15
Bold Profile Title
.psw-profile__title {
font-weight: bold;
}
@howardrapp
howardrapp / video-icon-centering.css
Created October 10, 2020 12:02
Video Icon Centering
/*video icon fix*/
.ps-media-iframe {
display: inherit;
}
@howardrapp
howardrapp / online-color.css
Last active October 11, 2020 22:28
Online Color Indicator
.ps-online { color: #31A24C; }
@howardrapp
howardrapp / vertical-logo-alignment.css
Created October 12, 2020 14:19
Vertical Logo Alignment
.gc-logo__image { height: calc(var(--height) – 2%); }
@howardrapp
howardrapp / vip-icon-size.css
Last active October 12, 2020 14:22
VIP Icon Size
.ps-vip__icon {
--vip-icon-size: 20px;
}
@howardrapp
howardrapp / notification-bubble-color.css
Created October 13, 2020 13:18
Notification Bubble Color
.ps-notif__bubble {background-color: #AF0000;}