tauri-rfd 0.1.0

Rusty File Dialog
Documentation
#rfd-overlay {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  animation: init 0.5s;

  display: flex;
  justify-content: center;
  align-items: center;
}
#rfd-card {
  padding: 20px;
  background-color: white;
  border-radius: 5px;

  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}
#rfd-input {
  text-align: center;
}
#rfd-button {
  display: block;
  margin-top: 5px;
  width: 100%;
}

@keyframes init {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}