- Introduced typography styles in _typography.scss for headings, paragraphs, blockquotes, and horizontal rules. - Added utility classes in _utils.scss for card styling and clearfix. - Updated layout.scss to include new typography and utility styles. - Defined common CSS variables in _common.scss for consistent theming. - Created dark and light theme variables in _dark.scss and _light.scss respectively. - Integrated Tailwind CSS with custom configurations in tailwind.config.js and postcss.config.js. - Implemented database migrations for contact and contact_persons tables. - Added data fixtures for generating sample contact data. - Developed Contact and ContactPerson entities with appropriate validation and serialization. - Enhanced ContactRepository with search and type filtering methods.
25 lines
404 B
SCSS
25 lines
404 B
SCSS
html {
|
|
height: 100%;
|
|
font-size: 14px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Lato', sans-serif;
|
|
color: var(--text-color);
|
|
background-color: var(--surface-ground);
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100%;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.layout-wrapper {
|
|
min-height: 100vh;
|
|
}
|