| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .file-drop-area {
- position: relative;
- display: flex;
- align-items: center;
- width: 100%;
- max-width: 100%;
- padding: 150px;
- border: 1px dashed var(--bs-gray-400);
- border-radius: 3px;
- transition: 0.2s;
- }
- .choose-file-button {
- flex-shrink: 0;
- background-color: var(--bs-gray-200);
- border: 1px solid var(--bs-gray-400);
- border-radius: 3px;
- padding: 8px 15px;
- margin-right: 10px;
- font-size: 12px;
- text-transform: uppercase;
- }
- .file-message {
- font-size: large;
- font-weight: 300;
- line-height: 1.4;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .import-excel {
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- width: 100%;
- cursor: pointer;
- opacity: 0;
- }
|