Pedro Bufulin

Results 17 comments of Pedro Bufulin

I also couldn't find a way to style it using the styled-component. It doesn't seem to work properly. But, if you put the styles in the style prop, it works...

Changing the color is simple: ```js import SideNav from "@trendmicro/react-sidenav"; const StyledSideNav = styled(SideNav)` background-color: #0057c3; `; ``` The bar out-of-the-box works for 100% height for me, do you have...

I actually found out your problem, of the 100% height. try adding this inside you SideNav component: ```js style={{ position: "fixed", }} ``` this will fix the navbar to the...

I would like this feature as well. Actually, I would like to attempt making it.

> @pedrohba1 which feature? Adding custom notes to timespans. Nearly all time tracking proprietary softwares allows that. It also would be useful to emit detailed reports.

I see, ignore what I said then.

Is it feasible to integrate a date picker UI? Just to make this process easier

I would like to submit a datepicker feauter if possible, although I believe the easy path would be just using a datepicker module from material-ui or something else to give...

I have this small piece of code that does that, with the aws sdk, if it helps: ```go package database import ( "context" "log" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/sns/types" "github.com/pkg/errors" ) func...

Hi. We would like this feature too. I think I could be able to implement it after looking how Geth handles it. Just to be sure, [this step from geth](https://github.com/ethereum/go-ethereum/blob/95741b18448aaacacd0edd8f73a9364bd3df8c92/cmd/evm/internal/t8ntool/execution.go#L258)...