16 lines
402 B
CSS
16 lines
402 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@import url('https://fonts.googleapis.com/css?family=Kanit');
|
|
@import "~@ng-select/ng-select/themes/default.theme.css";
|
|
|
|
.ng-select-container {
|
|
max-width: 400px;
|
|
font-family: 'Kanit', sans-serif;
|
|
height: 48px;
|
|
}
|
|
|
|
.ng-value-container {
|
|
overflow-y: auto;
|
|
}
|