transitioned to picocss and removed most styling

This commit is contained in:
2026-02-27 11:50:33 +01:00
parent 010efc1855
commit 828c52eecb
13 changed files with 46 additions and 289 deletions

View File

@@ -8,12 +8,6 @@ use crate::countdown::commands::{
};
pub use app_state::AppState;
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
#[tauri::command]
fn greet(name: &str) -> String {
format!("Hello, {}! You've been greeted from Rust!", name)
}
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
let app_state = AppState::new();
@@ -21,7 +15,6 @@ pub fn run() {
.manage(app_state)
.plugin(tauri_plugin_opener::init())
.invoke_handler(tauri::generate_handler![
greet,
countdown_start,
countdown_reset,
countdown_pause,