﻿/* style declared as  <link rel="stylesheet" href="_content/IA.UIR.Component/css/IaUirStyle.css" />
    added in two places for glolal use in both Blazor server and WASM projects, 
    in the layout of Blazor server project (Wkf.Server, defined in Wkf.Ui's AppLayout.razor, 
    and in the index.html of WASM project (Wkf.client) hosted by the Blazor server project.
*/
/*Scrollabe page*/
.uir-scrollable {
    width: 100%;
    height: 100vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
}
.uir-scrolled {
    flex: 1;
    overflow: auto;
    min-height: 0;
}

