0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/frontend/src/antd.less
2020-11-13 14:15:12 -05:00

35 lines
964 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* This file sets theming configuration on Ant Design for PostHog. Ant uses LESS which is incompatible
with SASS, which is why configuration is duplicated. To change any variable here, please update vars.scss too */
@import 'antd/lib/style/themes/default.less';
@import 'antd/dist/antd.less';
@text-color: #2d2d2d;
@text-muted: #d9d9d9;
@primary-color: #5375ff;
@link-color: #5375ff;
@success-color: #77b96c;
@warning-color: #f7a501;
@error-color: #f96132;
@font-size-base: 14px;
@heading-color: @text-color;
@text-color-secondary: rgba(0, 0, 0, 0.45);
@disabled-color: @text-muted;
@border-radius-base: 2px;
@border-color-base: #d9d9d9;
@body-background:  #f2f2f2;
@layout-body-background: #fff;
.hide-gte-lg {
display: none !important;
@media (max-width: @screen-lg-min) {
display: inherit !important;
}
}
.hide-lte-lg {
display: none !important;
@media (min-width: @screen-lg-min) {
display: inherit !important;
}
}